@pulumi/gcp 8.3.1 → 8.4.0

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 (73) hide show
  1. package/apigee/natAddress.d.ts +76 -1
  2. package/apigee/natAddress.js +66 -1
  3. package/apigee/natAddress.js.map +1 -1
  4. package/bigquery/table.d.ts +12 -0
  5. package/bigquery/table.js +2 -0
  6. package/bigquery/table.js.map +1 -1
  7. package/cloudrun/service.d.ts +39 -0
  8. package/cloudrun/service.js +39 -0
  9. package/cloudrun/service.js.map +1 -1
  10. package/cloudrunv2/service.d.ts +33 -0
  11. package/cloudrunv2/service.js +33 -0
  12. package/cloudrunv2/service.js.map +1 -1
  13. package/compute/getRegionInstanceGroupManager.d.ts +135 -0
  14. package/compute/getRegionInstanceGroupManager.js +82 -0
  15. package/compute/getRegionInstanceGroupManager.js.map +1 -0
  16. package/compute/getRouterNat.d.ts +1 -0
  17. package/compute/getRouterNat.js.map +1 -1
  18. package/compute/index.d.ts +9 -0
  19. package/compute/index.js +17 -4
  20. package/compute/index.js.map +1 -1
  21. package/compute/instance.d.ts +3 -3
  22. package/compute/instanceFromMachineImage.d.ts +3 -3
  23. package/compute/instanceFromTemplate.d.ts +3 -3
  24. package/compute/interconnect.d.ts +22 -16
  25. package/compute/interconnect.js +0 -6
  26. package/compute/interconnect.js.map +1 -1
  27. package/compute/regionCommitment.d.ts +12 -0
  28. package/compute/regionCommitment.js +2 -0
  29. package/compute/regionCommitment.js.map +1 -1
  30. package/compute/regionNetworkFirewallPolicyWithRules.d.ts +304 -0
  31. package/compute/regionNetworkFirewallPolicyWithRules.js +210 -0
  32. package/compute/regionNetworkFirewallPolicyWithRules.js.map +1 -0
  33. package/compute/routerNat.d.ts +17 -2
  34. package/compute/routerNat.js +2 -0
  35. package/compute/routerNat.js.map +1 -1
  36. package/compute/routerNatAddress.d.ts +171 -0
  37. package/compute/routerNatAddress.js +113 -0
  38. package/compute/routerNatAddress.js.map +1 -0
  39. package/compute/subnetwork.d.ts +6 -6
  40. package/logging/index.d.ts +3 -0
  41. package/logging/index.js +6 -1
  42. package/logging/index.js.map +1 -1
  43. package/logging/logScope.d.ts +163 -0
  44. package/logging/logScope.js +106 -0
  45. package/logging/logScope.js.map +1 -0
  46. package/looker/instance.d.ts +49 -0
  47. package/looker/instance.js +26 -0
  48. package/looker/instance.js.map +1 -1
  49. package/networkconnectivity/spoke.d.ts +174 -0
  50. package/networkconnectivity/spoke.js +174 -0
  51. package/networkconnectivity/spoke.js.map +1 -1
  52. package/networksecurity/securityProfile.d.ts +1 -1
  53. package/networksecurity/securityProfile.js +1 -1
  54. package/package.json +2 -2
  55. package/privilegedaccessmanager/getEntitlement.d.ts +43 -0
  56. package/privilegedaccessmanager/getEntitlement.js +28 -0
  57. package/privilegedaccessmanager/getEntitlement.js.map +1 -0
  58. package/privilegedaccessmanager/index.d.ts +3 -0
  59. package/privilegedaccessmanager/index.js +4 -1
  60. package/privilegedaccessmanager/index.js.map +1 -1
  61. package/secretmanager/getRegionalSecretVersion.d.ts +2 -2
  62. package/secretmanager/getRegionalSecretVersion.js +2 -2
  63. package/secretmanager/getRegionalSecretVersionAccess.d.ts +105 -0
  64. package/secretmanager/getRegionalSecretVersionAccess.js +58 -0
  65. package/secretmanager/getRegionalSecretVersionAccess.js.map +1 -0
  66. package/secretmanager/getRegionalSecrets.d.ts +88 -0
  67. package/secretmanager/getRegionalSecrets.js +54 -0
  68. package/secretmanager/getRegionalSecrets.js.map +1 -0
  69. package/secretmanager/index.d.ts +6 -0
  70. package/secretmanager/index.js +7 -1
  71. package/secretmanager/index.js.map +1 -1
  72. package/types/input.d.ts +578 -3
  73. package/types/output.d.ts +1055 -5
package/types/input.d.ts CHANGED
@@ -5808,6 +5808,28 @@ export declare namespace bigquery {
5808
5808
  */
5809
5809
  runtimeVersion?: pulumi.Input<string>;
5810
5810
  }
5811
+ interface TableBiglakeConfiguration {
5812
+ /**
5813
+ * The connection specifying the credentials to be used to
5814
+ * read and write to external storage, such as Cloud Storage. The connectionId can
5815
+ * have the form "&lt;project\_id&gt;.&lt;location\_id&gt;.&lt;connection\_id&gt;" or
5816
+ * projects/&lt;project\_id&gt;/locations/&lt;location\_id&gt;/connections/&lt;connection\_id&gt;".
5817
+ */
5818
+ connectionId: pulumi.Input<string>;
5819
+ /**
5820
+ * The file format the table data is stored in.
5821
+ */
5822
+ fileFormat: pulumi.Input<string>;
5823
+ /**
5824
+ * The fully qualified location prefix of the external folder where table data
5825
+ * is stored. The '*' wildcard character is not allowed. The URI should be in the format "gs://bucket/path_to_table/"
5826
+ */
5827
+ storageUri: pulumi.Input<string>;
5828
+ /**
5829
+ * The table format the metadata only snapshots are stored in.
5830
+ */
5831
+ tableFormat: pulumi.Input<string>;
5832
+ }
5811
5833
  interface TableEncryptionConfiguration {
5812
5834
  /**
5813
5835
  * The self link or full name of a key which should be used to
@@ -12145,6 +12167,14 @@ export declare namespace cloudrun {
12145
12167
  * Structure is documented below.
12146
12168
  */
12147
12169
  containers?: pulumi.Input<pulumi.Input<inputs.cloudrun.ServiceTemplateSpecContainer>[]>;
12170
+ /**
12171
+ * Node Selector describes the hardware requirements of the resources.
12172
+ * Use the following node selector keys to configure features on a Revision:
12173
+ * - `run.googleapis.com/accelerator` sets the [type of GPU](https://cloud.google.com/run/docs/configuring/services/gpu) required by the Revision to run.
12174
+ */
12175
+ nodeSelector?: pulumi.Input<{
12176
+ [key: string]: pulumi.Input<string>;
12177
+ }>;
12148
12178
  /**
12149
12179
  * Email address of the IAM service account associated with the revision of the
12150
12180
  * service. The service account represents the identity of the running revision,
@@ -13253,6 +13283,11 @@ export declare namespace cloudrunv2 {
13253
13283
  * If not specified or 0, defaults to 80 when requested CPU >= 1 and defaults to 1 when requested CPU < 1.
13254
13284
  */
13255
13285
  maxInstanceRequestConcurrency?: pulumi.Input<number>;
13286
+ /**
13287
+ * Node Selector describes the hardware requirements of the resources.
13288
+ * Structure is documented below.
13289
+ */
13290
+ nodeSelector?: pulumi.Input<inputs.cloudrunv2.ServiceTemplateNodeSelector>;
13256
13291
  /**
13257
13292
  * The unique name for the revision. If this field is omitted, it will be automatically generated based on the Service name.
13258
13293
  */
@@ -13476,7 +13511,7 @@ export declare namespace cloudrunv2 {
13476
13511
  */
13477
13512
  cpuIdle?: pulumi.Input<boolean>;
13478
13513
  /**
13479
- * Only memory and CPU are supported. Use key `cpu` for CPU limit and `memory` for memory limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
13514
+ * Only memory, CPU, and nvidia.com/gpu are supported. Use key `cpu` for CPU limit, `memory` for memory limit, `nvidia.com/gpu` for gpu limit. Note: The only supported values for CPU are '1', '2', '4', and '8'. Setting 4 CPU requires at least 2Gi of memory. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go
13480
13515
  */
13481
13516
  limits?: pulumi.Input<{
13482
13517
  [key: string]: pulumi.Input<string>;
@@ -13575,6 +13610,14 @@ export declare namespace cloudrunv2 {
13575
13610
  */
13576
13611
  name: pulumi.Input<string>;
13577
13612
  }
13613
+ interface ServiceTemplateNodeSelector {
13614
+ /**
13615
+ * The GPU to attach to an instance. See https://cloud.google.com/run/docs/configuring/services/gpu for configuring GPU.
13616
+ *
13617
+ * - - -
13618
+ */
13619
+ accelerator: pulumi.Input<string>;
13620
+ }
13578
13621
  interface ServiceTemplateScaling {
13579
13622
  /**
13580
13623
  * Maximum number of serving instances that this resource should have.
@@ -13588,8 +13631,6 @@ export declare namespace cloudrunv2 {
13588
13631
  interface ServiceTemplateServiceMesh {
13589
13632
  /**
13590
13633
  * The Mesh resource name. For more information see https://cloud.google.com/service-mesh/docs/reference/network-services/rest/v1/projects.locations.meshes#resource:-mesh.
13591
- *
13592
- * - - -
13593
13634
  */
13594
13635
  mesh?: pulumi.Input<string>;
13595
13636
  }
@@ -17109,6 +17150,10 @@ export declare namespace compute {
17109
17150
  * Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
17110
17151
  */
17111
17152
  automaticRestart?: pulumi.Input<boolean>;
17153
+ /**
17154
+ * Specify the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
17155
+ */
17156
+ hostErrorTimeoutSeconds?: pulumi.Input<number>;
17112
17157
  /**
17113
17158
  * Specifies the action GCE should take when SPOT VM is preempted.
17114
17159
  */
@@ -17535,6 +17580,10 @@ export declare namespace compute {
17535
17580
  * Specifies if the instance should be restarted if it was terminated by Compute Engine (not a user).
17536
17581
  */
17537
17582
  automaticRestart?: pulumi.Input<boolean>;
17583
+ /**
17584
+ * Specify the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
17585
+ */
17586
+ hostErrorTimeoutSeconds?: pulumi.Input<number>;
17538
17587
  /**
17539
17588
  * Specifies the action GCE should take when SPOT VM is preempted.
17540
17589
  */
@@ -18117,6 +18166,10 @@ export declare namespace compute {
18117
18166
  * Defaults to true.
18118
18167
  */
18119
18168
  automaticRestart?: pulumi.Input<boolean>;
18169
+ /**
18170
+ * Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
18171
+ */
18172
+ hostErrorTimeoutSeconds?: pulumi.Input<number>;
18120
18173
  /**
18121
18174
  * Describe the type of termination action for VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
18122
18175
  */
@@ -18633,6 +18686,10 @@ export declare namespace compute {
18633
18686
  * terminated by a user). This defaults to true.
18634
18687
  */
18635
18688
  automaticRestart?: pulumi.Input<boolean>;
18689
+ /**
18690
+ * Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
18691
+ */
18692
+ hostErrorTimeoutSeconds?: pulumi.Input<number>;
18636
18693
  /**
18637
18694
  * Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
18638
18695
  */
@@ -18857,6 +18914,14 @@ export declare namespace compute {
18857
18914
  state?: pulumi.Input<string>;
18858
18915
  }
18859
18916
  interface InterconnectMacsec {
18917
+ /**
18918
+ * If set to true, the Interconnect connection is configured with a should-secure
18919
+ * MACsec security policy, that allows the Google router to fallback to cleartext
18920
+ * traffic if the MKA session cannot be established. By default, the Interconnect
18921
+ * connection is configured with a must-secure security policy that drops all traffic
18922
+ * if the MKA session cannot be established with your router.
18923
+ */
18924
+ failOpen?: pulumi.Input<boolean>;
18860
18925
  /**
18861
18926
  * A keychain placeholder describing a set of named key objects along with their
18862
18927
  * start times. A MACsec CKN/CAK is generated for each key in the key chain.
@@ -18868,11 +18933,16 @@ export declare namespace compute {
18868
18933
  }
18869
18934
  interface InterconnectMacsecPreSharedKey {
18870
18935
  /**
18936
+ * (Optional, Deprecated)
18871
18937
  * If set to true, the Interconnect connection is configured with a should-secure
18872
18938
  * MACsec security policy, that allows the Google router to fallback to cleartext
18873
18939
  * traffic if the MKA session cannot be established. By default, the Interconnect
18874
18940
  * connection is configured with a must-secure security policy that drops all traffic
18875
18941
  * if the MKA session cannot be established with your router.
18942
+ *
18943
+ * > **Warning:** `failOpen` is deprecated and will be removed in a future major release. Use other `failOpen` instead.
18944
+ *
18945
+ * @deprecated `failOpen` is deprecated and will be removed in a future major release. Use other `failOpen` instead.
18876
18946
  */
18877
18947
  failOpen?: pulumi.Input<boolean>;
18878
18948
  /**
@@ -21542,6 +21612,10 @@ export declare namespace compute {
21542
21612
  * terminated by a user). This defaults to true.
21543
21613
  */
21544
21614
  automaticRestart?: pulumi.Input<boolean>;
21615
+ /**
21616
+ * Specifies the time in seconds for host error detection, the value must be within the range of [90, 330] with the increment of 30, if unset, the default behavior of host error recovery will be used.
21617
+ */
21618
+ hostErrorTimeoutSeconds?: pulumi.Input<number>;
21545
21619
  /**
21546
21620
  * Describe the type of termination action for `SPOT` VM. Can be `STOP` or `DELETE`. Read more on [here](https://cloud.google.com/compute/docs/instances/create-use-spot)
21547
21621
  */
@@ -21853,6 +21927,419 @@ export declare namespace compute {
21853
21927
  */
21854
21928
  state?: pulumi.Input<string>;
21855
21929
  }
21930
+ interface RegionNetworkFirewallPolicyWithRulesPredefinedRule {
21931
+ /**
21932
+ * (Output)
21933
+ * The Action to perform when the client connection triggers the rule. Can currently be either
21934
+ * "allow", "deny", "applySecurityProfileGroup" or "gotoNext".
21935
+ */
21936
+ action?: pulumi.Input<string>;
21937
+ /**
21938
+ * (Output)
21939
+ * A description of the rule.
21940
+ */
21941
+ description?: pulumi.Input<string>;
21942
+ /**
21943
+ * (Output)
21944
+ * The direction in which this rule applies. If unspecified an INGRESS rule is created.
21945
+ */
21946
+ direction?: pulumi.Input<string>;
21947
+ /**
21948
+ * (Output)
21949
+ * Denotes whether the firewall policy rule is disabled. When set to true,
21950
+ * the firewall policy rule is not enforced and traffic behaves as if it did
21951
+ * not exist. If this is unspecified, the firewall policy rule will be
21952
+ * enabled.
21953
+ */
21954
+ disabled?: pulumi.Input<boolean>;
21955
+ /**
21956
+ * (Output)
21957
+ * Denotes whether to enable logging for a particular rule.
21958
+ * If logging is enabled, logs will be exported to the
21959
+ * configured export destination in Stackdriver.
21960
+ */
21961
+ enableLogging?: pulumi.Input<boolean>;
21962
+ /**
21963
+ * (Output)
21964
+ * A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
21965
+ * Structure is documented below.
21966
+ */
21967
+ matches?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatch>[]>;
21968
+ /**
21969
+ * (Output)
21970
+ * An integer indicating the priority of a rule in the list. The priority must be a value
21971
+ * between 0 and 2147483647. Rules are evaluated from highest to lowest priority where 0 is the
21972
+ * highest priority and 2147483647 is the lowest priority.
21973
+ */
21974
+ priority?: pulumi.Input<number>;
21975
+ /**
21976
+ * (Output)
21977
+ * An optional name for the rule. This field is not a unique identifier
21978
+ * and can be updated.
21979
+ */
21980
+ ruleName?: pulumi.Input<string>;
21981
+ /**
21982
+ * (Output)
21983
+ * A fully-qualified URL of a SecurityProfile resource instance.
21984
+ * Example:
21985
+ * https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
21986
+ * Must be specified if action is 'apply_security_profile_group'.
21987
+ */
21988
+ securityProfileGroup?: pulumi.Input<string>;
21989
+ /**
21990
+ * (Output)
21991
+ * A list of secure tags that controls which instances the firewall rule
21992
+ * applies to. If <code>targetSecureTag</code> are specified, then the
21993
+ * firewall rule applies only to instances in the VPC network that have one
21994
+ * of those EFFECTIVE secure tags, if all the targetSecureTag are in
21995
+ * INEFFECTIVE state, then this rule will be ignored.
21996
+ * <code>targetSecureTag</code> may not be set at the same time as
21997
+ * <code>targetServiceAccounts</code>.
21998
+ * If neither <code>targetServiceAccounts</code> nor
21999
+ * <code>targetSecureTag</code> are specified, the firewall rule applies
22000
+ * to all instances on the specified network.
22001
+ * Maximum number of target label tags allowed is 256.
22002
+ * Structure is documented below.
22003
+ */
22004
+ targetSecureTags?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesPredefinedRuleTargetSecureTag>[]>;
22005
+ /**
22006
+ * (Output)
22007
+ * A list of service accounts indicating the sets of
22008
+ * instances that are applied with this rule.
22009
+ */
22010
+ targetServiceAccounts?: pulumi.Input<pulumi.Input<string>[]>;
22011
+ /**
22012
+ * (Output)
22013
+ * Boolean flag indicating if the traffic should be TLS decrypted.
22014
+ * It can be set only if action = 'apply_security_profile_group' and cannot be set for other actions.
22015
+ */
22016
+ tlsInspect?: pulumi.Input<boolean>;
22017
+ }
22018
+ interface RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatch {
22019
+ /**
22020
+ * Address groups which should be matched against the traffic destination.
22021
+ * Maximum number of destination address groups is 10.
22022
+ */
22023
+ destAddressGroups?: pulumi.Input<pulumi.Input<string>[]>;
22024
+ /**
22025
+ * Fully Qualified Domain Name (FQDN) which should be matched against
22026
+ * traffic destination. Maximum number of destination fqdn allowed is 100.
22027
+ */
22028
+ destFqdns?: pulumi.Input<pulumi.Input<string>[]>;
22029
+ /**
22030
+ * Destination IP address range in CIDR format. Required for
22031
+ * EGRESS rules.
22032
+ */
22033
+ destIpRanges?: pulumi.Input<pulumi.Input<string>[]>;
22034
+ /**
22035
+ * Region codes whose IP addresses will be used to match for destination
22036
+ * of traffic. Should be specified as 2 letter country code defined as per
22037
+ * ISO 3166 alpha-2 country codes. ex."US"
22038
+ * Maximum number of destination region codes allowed is 5000.
22039
+ */
22040
+ destRegionCodes?: pulumi.Input<pulumi.Input<string>[]>;
22041
+ /**
22042
+ * Names of Network Threat Intelligence lists.
22043
+ * The IPs in these lists will be matched against traffic destination.
22044
+ */
22045
+ destThreatIntelligences?: pulumi.Input<pulumi.Input<string>[]>;
22046
+ /**
22047
+ * Pairs of IP protocols and ports that the rule should match.
22048
+ * Structure is documented below.
22049
+ */
22050
+ layer4Configs?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchLayer4Config>[]>;
22051
+ /**
22052
+ * Address groups which should be matched against the traffic source.
22053
+ * Maximum number of source address groups is 10.
22054
+ */
22055
+ srcAddressGroups?: pulumi.Input<pulumi.Input<string>[]>;
22056
+ /**
22057
+ * Fully Qualified Domain Name (FQDN) which should be matched against
22058
+ * traffic source. Maximum number of source fqdn allowed is 100.
22059
+ */
22060
+ srcFqdns?: pulumi.Input<pulumi.Input<string>[]>;
22061
+ /**
22062
+ * Source IP address range in CIDR format. Required for
22063
+ * INGRESS rules.
22064
+ */
22065
+ srcIpRanges?: pulumi.Input<pulumi.Input<string>[]>;
22066
+ /**
22067
+ * Region codes whose IP addresses will be used to match for source
22068
+ * of traffic. Should be specified as 2 letter country code defined as per
22069
+ * ISO 3166 alpha-2 country codes. ex."US"
22070
+ * Maximum number of source region codes allowed is 5000.
22071
+ */
22072
+ srcRegionCodes?: pulumi.Input<pulumi.Input<string>[]>;
22073
+ /**
22074
+ * List of secure tag values, which should be matched at the source
22075
+ * of the traffic.
22076
+ * For INGRESS rule, if all the <code>srcSecureTag</code> are INEFFECTIVE,
22077
+ * and there is no <code>srcIpRange</code>, this rule will be ignored.
22078
+ * Maximum number of source tag values allowed is 256.
22079
+ * Structure is documented below.
22080
+ *
22081
+ *
22082
+ * <a name="nestedLayer4Config"></a>The `layer4Config` block supports:
22083
+ */
22084
+ srcSecureTags?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchSrcSecureTag>[]>;
22085
+ /**
22086
+ * Names of Network Threat Intelligence lists.
22087
+ * The IPs in these lists will be matched against traffic source.
22088
+ */
22089
+ srcThreatIntelligences?: pulumi.Input<pulumi.Input<string>[]>;
22090
+ }
22091
+ interface RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchLayer4Config {
22092
+ /**
22093
+ * (Output)
22094
+ * The IP protocol to which this rule applies. The protocol
22095
+ * type is required when creating a firewall rule.
22096
+ * This value can either be one of the following well
22097
+ * known protocol strings (tcp, udp, icmp, esp, ah, ipip, sctp),
22098
+ * or the IP protocol number.
22099
+ */
22100
+ ipProtocol?: pulumi.Input<string>;
22101
+ /**
22102
+ * (Output)
22103
+ * An optional list of ports to which this rule applies. This field
22104
+ * is only applicable for UDP or TCP protocol. Each entry must be
22105
+ * either an integer or a range. If not specified, this rule
22106
+ * applies to connections through any port.
22107
+ * Example inputs include: ["22"], ["80","443"], and
22108
+ * ["12345-12349"].
22109
+ */
22110
+ ports?: pulumi.Input<pulumi.Input<string>[]>;
22111
+ }
22112
+ interface RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchSrcSecureTag {
22113
+ /**
22114
+ * Name of the secure tag, created with TagManager's TagValue API.
22115
+ * @pattern tagValues/[0-9]+
22116
+ */
22117
+ name?: pulumi.Input<string>;
22118
+ /**
22119
+ * (Output)
22120
+ * [Output Only] State of the secure tag, either `EFFECTIVE` or
22121
+ * `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
22122
+ * or its network is deleted.
22123
+ */
22124
+ state?: pulumi.Input<string>;
22125
+ }
22126
+ interface RegionNetworkFirewallPolicyWithRulesPredefinedRuleTargetSecureTag {
22127
+ /**
22128
+ * Name of the secure tag, created with TagManager's TagValue API.
22129
+ * @pattern tagValues/[0-9]+
22130
+ */
22131
+ name?: pulumi.Input<string>;
22132
+ /**
22133
+ * (Output)
22134
+ * [Output Only] State of the secure tag, either `EFFECTIVE` or
22135
+ * `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
22136
+ * or its network is deleted.
22137
+ *
22138
+ * - - -
22139
+ */
22140
+ state?: pulumi.Input<string>;
22141
+ }
22142
+ interface RegionNetworkFirewallPolicyWithRulesRule {
22143
+ /**
22144
+ * The Action to perform when the client connection triggers the rule. Can currently be either
22145
+ * "allow", "deny", "applySecurityProfileGroup" or "gotoNext".
22146
+ */
22147
+ action: pulumi.Input<string>;
22148
+ /**
22149
+ * A description of the rule.
22150
+ */
22151
+ description?: pulumi.Input<string>;
22152
+ /**
22153
+ * The direction in which this rule applies. If unspecified an INGRESS rule is created.
22154
+ * Possible values are: `INGRESS`, `EGRESS`.
22155
+ */
22156
+ direction?: pulumi.Input<string>;
22157
+ /**
22158
+ * Denotes whether the firewall policy rule is disabled. When set to true,
22159
+ * the firewall policy rule is not enforced and traffic behaves as if it did
22160
+ * not exist. If this is unspecified, the firewall policy rule will be
22161
+ * enabled.
22162
+ */
22163
+ disabled?: pulumi.Input<boolean>;
22164
+ /**
22165
+ * Denotes whether to enable logging for a particular rule.
22166
+ * If logging is enabled, logs will be exported to the
22167
+ * configured export destination in Stackdriver.
22168
+ */
22169
+ enableLogging?: pulumi.Input<boolean>;
22170
+ /**
22171
+ * A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
22172
+ * Structure is documented below.
22173
+ */
22174
+ match: pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesRuleMatch>;
22175
+ /**
22176
+ * An integer indicating the priority of a rule in the list. The priority must be a value
22177
+ * between 0 and 2147483647. Rules are evaluated from highest to lowest priority where 0 is the
22178
+ * highest priority and 2147483647 is the lowest priority.
22179
+ */
22180
+ priority: pulumi.Input<number>;
22181
+ /**
22182
+ * An optional name for the rule. This field is not a unique identifier
22183
+ * and can be updated.
22184
+ */
22185
+ ruleName?: pulumi.Input<string>;
22186
+ /**
22187
+ * A fully-qualified URL of a SecurityProfile resource instance.
22188
+ * Example:
22189
+ * https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group
22190
+ * Must be specified if action is 'apply_security_profile_group'.
22191
+ */
22192
+ securityProfileGroup?: pulumi.Input<string>;
22193
+ /**
22194
+ * A list of secure tags that controls which instances the firewall rule
22195
+ * applies to. If <code>targetSecureTag</code> are specified, then the
22196
+ * firewall rule applies only to instances in the VPC network that have one
22197
+ * of those EFFECTIVE secure tags, if all the targetSecureTag are in
22198
+ * INEFFECTIVE state, then this rule will be ignored.
22199
+ * <code>targetSecureTag</code> may not be set at the same time as
22200
+ * <code>targetServiceAccounts</code>.
22201
+ * If neither <code>targetServiceAccounts</code> nor
22202
+ * <code>targetSecureTag</code> are specified, the firewall rule applies
22203
+ * to all instances on the specified network.
22204
+ * Maximum number of target label tags allowed is 256.
22205
+ * Structure is documented below.
22206
+ */
22207
+ targetSecureTags?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesRuleTargetSecureTag>[]>;
22208
+ /**
22209
+ * A list of service accounts indicating the sets of
22210
+ * instances that are applied with this rule.
22211
+ */
22212
+ targetServiceAccounts?: pulumi.Input<pulumi.Input<string>[]>;
22213
+ /**
22214
+ * Boolean flag indicating if the traffic should be TLS decrypted.
22215
+ * It can be set only if action = 'apply_security_profile_group' and cannot be set for other actions.
22216
+ */
22217
+ tlsInspect?: pulumi.Input<boolean>;
22218
+ }
22219
+ interface RegionNetworkFirewallPolicyWithRulesRuleMatch {
22220
+ /**
22221
+ * Address groups which should be matched against the traffic destination.
22222
+ * Maximum number of destination address groups is 10.
22223
+ */
22224
+ destAddressGroups?: pulumi.Input<pulumi.Input<string>[]>;
22225
+ /**
22226
+ * Fully Qualified Domain Name (FQDN) which should be matched against
22227
+ * traffic destination. Maximum number of destination fqdn allowed is 100.
22228
+ */
22229
+ destFqdns?: pulumi.Input<pulumi.Input<string>[]>;
22230
+ /**
22231
+ * Destination IP address range in CIDR format. Required for
22232
+ * EGRESS rules.
22233
+ */
22234
+ destIpRanges?: pulumi.Input<pulumi.Input<string>[]>;
22235
+ /**
22236
+ * Region codes whose IP addresses will be used to match for destination
22237
+ * of traffic. Should be specified as 2 letter country code defined as per
22238
+ * ISO 3166 alpha-2 country codes. ex."US"
22239
+ * Maximum number of destination region codes allowed is 5000.
22240
+ */
22241
+ destRegionCodes?: pulumi.Input<pulumi.Input<string>[]>;
22242
+ /**
22243
+ * Names of Network Threat Intelligence lists.
22244
+ * The IPs in these lists will be matched against traffic destination.
22245
+ */
22246
+ destThreatIntelligences?: pulumi.Input<pulumi.Input<string>[]>;
22247
+ /**
22248
+ * Pairs of IP protocols and ports that the rule should match.
22249
+ * Structure is documented below.
22250
+ */
22251
+ layer4Configs: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesRuleMatchLayer4Config>[]>;
22252
+ /**
22253
+ * Address groups which should be matched against the traffic source.
22254
+ * Maximum number of source address groups is 10.
22255
+ */
22256
+ srcAddressGroups?: pulumi.Input<pulumi.Input<string>[]>;
22257
+ /**
22258
+ * Fully Qualified Domain Name (FQDN) which should be matched against
22259
+ * traffic source. Maximum number of source fqdn allowed is 100.
22260
+ */
22261
+ srcFqdns?: pulumi.Input<pulumi.Input<string>[]>;
22262
+ /**
22263
+ * Source IP address range in CIDR format. Required for
22264
+ * INGRESS rules.
22265
+ */
22266
+ srcIpRanges?: pulumi.Input<pulumi.Input<string>[]>;
22267
+ /**
22268
+ * Region codes whose IP addresses will be used to match for source
22269
+ * of traffic. Should be specified as 2 letter country code defined as per
22270
+ * ISO 3166 alpha-2 country codes. ex."US"
22271
+ * Maximum number of source region codes allowed is 5000.
22272
+ */
22273
+ srcRegionCodes?: pulumi.Input<pulumi.Input<string>[]>;
22274
+ /**
22275
+ * List of secure tag values, which should be matched at the source
22276
+ * of the traffic.
22277
+ * For INGRESS rule, if all the <code>srcSecureTag</code> are INEFFECTIVE,
22278
+ * and there is no <code>srcIpRange</code>, this rule will be ignored.
22279
+ * Maximum number of source tag values allowed is 256.
22280
+ * Structure is documented below.
22281
+ *
22282
+ *
22283
+ * <a name="nestedLayer4Config"></a>The `layer4Config` block supports:
22284
+ */
22285
+ srcSecureTags?: pulumi.Input<pulumi.Input<inputs.compute.RegionNetworkFirewallPolicyWithRulesRuleMatchSrcSecureTag>[]>;
22286
+ /**
22287
+ * Names of Network Threat Intelligence lists.
22288
+ * The IPs in these lists will be matched against traffic source.
22289
+ */
22290
+ srcThreatIntelligences?: pulumi.Input<pulumi.Input<string>[]>;
22291
+ }
22292
+ interface RegionNetworkFirewallPolicyWithRulesRuleMatchLayer4Config {
22293
+ /**
22294
+ * (Output)
22295
+ * The IP protocol to which this rule applies. The protocol
22296
+ * type is required when creating a firewall rule.
22297
+ * This value can either be one of the following well
22298
+ * known protocol strings (tcp, udp, icmp, esp, ah, ipip, sctp),
22299
+ * or the IP protocol number.
22300
+ */
22301
+ ipProtocol: pulumi.Input<string>;
22302
+ /**
22303
+ * (Output)
22304
+ * An optional list of ports to which this rule applies. This field
22305
+ * is only applicable for UDP or TCP protocol. Each entry must be
22306
+ * either an integer or a range. If not specified, this rule
22307
+ * applies to connections through any port.
22308
+ * Example inputs include: ["22"], ["80","443"], and
22309
+ * ["12345-12349"].
22310
+ */
22311
+ ports?: pulumi.Input<pulumi.Input<string>[]>;
22312
+ }
22313
+ interface RegionNetworkFirewallPolicyWithRulesRuleMatchSrcSecureTag {
22314
+ /**
22315
+ * Name of the secure tag, created with TagManager's TagValue API.
22316
+ * @pattern tagValues/[0-9]+
22317
+ */
22318
+ name?: pulumi.Input<string>;
22319
+ /**
22320
+ * (Output)
22321
+ * [Output Only] State of the secure tag, either `EFFECTIVE` or
22322
+ * `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
22323
+ * or its network is deleted.
22324
+ */
22325
+ state?: pulumi.Input<string>;
22326
+ }
22327
+ interface RegionNetworkFirewallPolicyWithRulesRuleTargetSecureTag {
22328
+ /**
22329
+ * Name of the secure tag, created with TagManager's TagValue API.
22330
+ * @pattern tagValues/[0-9]+
22331
+ */
22332
+ name?: pulumi.Input<string>;
22333
+ /**
22334
+ * (Output)
22335
+ * [Output Only] State of the secure tag, either `EFFECTIVE` or
22336
+ * `INEFFECTIVE`. A secure tag is `INEFFECTIVE` when it is deleted
22337
+ * or its network is deleted.
22338
+ *
22339
+ * - - -
22340
+ */
22341
+ state?: pulumi.Input<string>;
22342
+ }
21856
22343
  interface RegionPerInstanceConfigPreservedState {
21857
22344
  /**
21858
22345
  * Stateful disks for the instance.
@@ -29275,6 +29762,10 @@ export declare namespace container {
29275
29762
  * * `CGROUP_MODE_V2`: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image.
29276
29763
  */
29277
29764
  cgroupMode?: pulumi.Input<string>;
29765
+ /**
29766
+ * Amounts for 2M and 1G hugepages. Structure is documented below.
29767
+ */
29768
+ hugepagesConfig?: pulumi.Input<inputs.container.ClusterNodeConfigLinuxNodeConfigHugepagesConfig>;
29278
29769
  /**
29279
29770
  * The Linux kernel parameters to be applied to the nodes
29280
29771
  * and all pods running on the nodes. Specified as a map from the key, such as
@@ -29285,6 +29776,16 @@ export declare namespace container {
29285
29776
  [key: string]: pulumi.Input<string>;
29286
29777
  }>;
29287
29778
  }
29779
+ interface ClusterNodeConfigLinuxNodeConfigHugepagesConfig {
29780
+ /**
29781
+ * Amount of 1G hugepages.
29782
+ */
29783
+ hugepageSize1g?: pulumi.Input<number>;
29784
+ /**
29785
+ * Amount of 2M hugepages.
29786
+ */
29787
+ hugepageSize2m?: pulumi.Input<number>;
29788
+ }
29288
29789
  interface ClusterNodeConfigLocalNvmeSsdBlockConfig {
29289
29790
  /**
29290
29791
  * Number of raw-block local NVMe SSD disks to be attached to the node. Each local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD disks to be attached to the node.
@@ -30090,6 +30591,10 @@ export declare namespace container {
30090
30591
  * * `CGROUP_MODE_V2`: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image.
30091
30592
  */
30092
30593
  cgroupMode?: pulumi.Input<string>;
30594
+ /**
30595
+ * Amounts for 2M and 1G hugepages. Structure is documented below.
30596
+ */
30597
+ hugepagesConfig?: pulumi.Input<inputs.container.ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig>;
30093
30598
  /**
30094
30599
  * The Linux kernel parameters to be applied to the nodes
30095
30600
  * and all pods running on the nodes. Specified as a map from the key, such as
@@ -30100,6 +30605,16 @@ export declare namespace container {
30100
30605
  [key: string]: pulumi.Input<string>;
30101
30606
  }>;
30102
30607
  }
30608
+ interface ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig {
30609
+ /**
30610
+ * Amount of 1G hugepages.
30611
+ */
30612
+ hugepageSize1g?: pulumi.Input<number>;
30613
+ /**
30614
+ * Amount of 2M hugepages.
30615
+ */
30616
+ hugepageSize2m?: pulumi.Input<number>;
30617
+ }
30103
30618
  interface ClusterNodePoolNodeConfigLocalNvmeSsdBlockConfig {
30104
30619
  /**
30105
30620
  * Number of raw-block local NVMe SSD disks to be attached to the node. Each local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD disks to be attached to the node.
@@ -30922,6 +31437,10 @@ export declare namespace container {
30922
31437
  * cgroupMode specifies the cgroup mode to be used on the node.
30923
31438
  */
30924
31439
  cgroupMode?: pulumi.Input<string>;
31440
+ /**
31441
+ * Amounts for 2M and 1G hugepages.
31442
+ */
31443
+ hugepagesConfig?: pulumi.Input<inputs.container.NodePoolNodeConfigLinuxNodeConfigHugepagesConfig>;
30925
31444
  /**
30926
31445
  * The Linux kernel parameters to be applied to the nodes and all pods running on the nodes.
30927
31446
  */
@@ -30929,6 +31448,16 @@ export declare namespace container {
30929
31448
  [key: string]: pulumi.Input<string>;
30930
31449
  }>;
30931
31450
  }
31451
+ interface NodePoolNodeConfigLinuxNodeConfigHugepagesConfig {
31452
+ /**
31453
+ * Amount of 1G hugepages.
31454
+ */
31455
+ hugepageSize1g?: pulumi.Input<number>;
31456
+ /**
31457
+ * Amount of 2M hugepages.
31458
+ */
31459
+ hugepageSize2m?: pulumi.Input<number>;
31460
+ }
30932
31461
  interface NodePoolNodeConfigLocalNvmeSsdBlockConfig {
30933
31462
  /**
30934
31463
  * Number of raw-block local NVMe SSD disks to be attached to the node. Each local SSD is 375 GB in size.
@@ -53172,6 +53701,37 @@ export declare namespace looker {
53172
53701
  */
53173
53702
  clientSecret: pulumi.Input<string>;
53174
53703
  }
53704
+ interface InstancePscConfig {
53705
+ /**
53706
+ * List of VPCs that are allowed ingress into the Looker instance.
53707
+ */
53708
+ allowedVpcs?: pulumi.Input<pulumi.Input<string>[]>;
53709
+ /**
53710
+ * (Output)
53711
+ * URI of the Looker service attachment.
53712
+ */
53713
+ lookerServiceAttachmentUri?: pulumi.Input<string>;
53714
+ /**
53715
+ * List of egress service attachment configurations.
53716
+ * Structure is documented below.
53717
+ */
53718
+ serviceAttachments?: pulumi.Input<pulumi.Input<inputs.looker.InstancePscConfigServiceAttachment>[]>;
53719
+ }
53720
+ interface InstancePscConfigServiceAttachment {
53721
+ /**
53722
+ * (Output)
53723
+ * Status of the service attachment connection.
53724
+ */
53725
+ connectionStatus?: pulumi.Input<string>;
53726
+ /**
53727
+ * Fully qualified domain name that will be used in the private DNS record created for the service attachment.
53728
+ */
53729
+ localFqdn?: pulumi.Input<string>;
53730
+ /**
53731
+ * URI of the service attachment to connect to.
53732
+ */
53733
+ targetServiceAttachmentUri?: pulumi.Input<string>;
53734
+ }
53175
53735
  interface InstanceUserMetadata {
53176
53736
  /**
53177
53737
  * Number of additional Developer Users to allocate to the Looker Instance.
@@ -55503,6 +56063,11 @@ export declare namespace networkconnectivity {
55503
56063
  reason?: pulumi.Input<string>;
55504
56064
  }
55505
56065
  interface SpokeLinkedInterconnectAttachments {
56066
+ /**
56067
+ * IP ranges allowed to be included during import from hub (does not control transit connectivity).
56068
+ * The only allowed value for now is "ALL_IPV4_RANGES".
56069
+ */
56070
+ includeImportRanges?: pulumi.Input<pulumi.Input<string>[]>;
55506
56071
  /**
55507
56072
  * A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
55508
56073
  */
@@ -55513,6 +56078,11 @@ export declare namespace networkconnectivity {
55513
56078
  uris: pulumi.Input<pulumi.Input<string>[]>;
55514
56079
  }
55515
56080
  interface SpokeLinkedRouterApplianceInstances {
56081
+ /**
56082
+ * IP ranges allowed to be included during import from hub (does not control transit connectivity).
56083
+ * The only allowed value for now is "ALL_IPV4_RANGES".
56084
+ */
56085
+ includeImportRanges?: pulumi.Input<pulumi.Input<string>[]>;
55516
56086
  /**
55517
56087
  * The list of router appliance instances
55518
56088
  * Structure is documented below.
@@ -55548,6 +56118,11 @@ export declare namespace networkconnectivity {
55548
56118
  uri: pulumi.Input<string>;
55549
56119
  }
55550
56120
  interface SpokeLinkedVpnTunnels {
56121
+ /**
56122
+ * IP ranges allowed to be included during import from hub (does not control transit connectivity).
56123
+ * The only allowed value for now is "ALL_IPV4_RANGES".
56124
+ */
56125
+ includeImportRanges?: pulumi.Input<pulumi.Input<string>[]>;
55551
56126
  /**
55552
56127
  * A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
55553
56128
  */