Skip to content

Commit

Permalink
Update dependency hashicorp/terraform-provider-google to v4.63.1 (#30)
Browse files Browse the repository at this point in the history
Signed-off-by: tflibsonnet-ci <120686569+tflibsonnet-ci@users.noreply.github.com>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
  • Loading branch information
tflibsonnet-ci and renovate[bot] authored Apr 28, 2023
1 parent c4eadc8 commit 6b10fee
Show file tree
Hide file tree
Showing 30 changed files with 2,253 additions and 50 deletions.
4 changes: 4 additions & 0 deletions 4.x/_gen/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
access_context_manager_access_policy_iam_policy: (import 'resources/access_context_manager_access_policy_iam_policy.libsonnet'),
access_context_manager_authorized_orgs_desc: (import 'resources/access_context_manager_authorized_orgs_desc.libsonnet'),
access_context_manager_gcp_user_access_binding: (import 'resources/access_context_manager_gcp_user_access_binding.libsonnet'),
access_context_manager_ingress_policy: (import 'resources/access_context_manager_ingress_policy.libsonnet'),
access_context_manager_service_perimeter: (import 'resources/access_context_manager_service_perimeter.libsonnet'),
access_context_manager_service_perimeter_resource: (import 'resources/access_context_manager_service_perimeter_resource.libsonnet'),
access_context_manager_service_perimeters: (import 'resources/access_context_manager_service_perimeters.libsonnet'),
Expand Down Expand Up @@ -211,8 +212,11 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
compute_project_default_network_tier: (import 'resources/compute_project_default_network_tier.libsonnet'),
compute_project_metadata: (import 'resources/compute_project_metadata.libsonnet'),
compute_project_metadata_item: (import 'resources/compute_project_metadata_item.libsonnet'),
compute_public_advertised_prefix: (import 'resources/compute_public_advertised_prefix.libsonnet'),
compute_public_delegated_prefix: (import 'resources/compute_public_delegated_prefix.libsonnet'),
compute_region_autoscaler: (import 'resources/compute_region_autoscaler.libsonnet'),
compute_region_backend_service: (import 'resources/compute_region_backend_service.libsonnet'),
compute_region_commitment: (import 'resources/compute_region_commitment.libsonnet'),
compute_region_disk: (import 'resources/compute_region_disk.libsonnet'),
compute_region_disk_iam_binding: (import 'resources/compute_region_disk_iam_binding.libsonnet'),
compute_region_disk_iam_member: (import 'resources/compute_region_disk_iam_member.libsonnet'),
Expand Down
78 changes: 78 additions & 0 deletions 4.x/_gen/resources/access_context_manager_ingress_policy.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet');
local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
{
'#':: d.pkg(name='access_context_manager_ingress_policy', url='', help='`access_context_manager_ingress_policy` represents the `google_access_context_manager_ingress_policy` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'),
'#new':: d.fn(help="\n`google.access_context_manager_ingress_policy.new` injects a new `google_access_context_manager_ingress_policy` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n google.access_context_manager_ingress_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.access_context_manager_ingress_policy` using the reference:\n\n $._ref.google_access_context_manager_ingress_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ google_access_context_manager_ingress_policy.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `ingress_policy_name` (`string`): The name of the Service Perimeter to add this resource to.\n - `resource` (`string`): A GCP resource that is inside of the service perimeter.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.access_context_manager_ingress_policy.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]),
new(
resourceLabel,
ingress_policy_name,
resource,
timeouts=null,
_meta={}
):: tf.withResource(
type='google_access_context_manager_ingress_policy',
label=resourceLabel,
attrs=self.newAttrs(ingress_policy_name=ingress_policy_name, resource=resource, timeouts=timeouts),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.access_context_manager_ingress_policy.newAttrs` constructs a new object with attributes and blocks configured for the `access_context_manager_ingress_policy`\nTerraform resource.\n\nUnlike [google.access_context_manager_ingress_policy.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `ingress_policy_name` (`string`): The name of the Service Perimeter to add this resource to.\n - `resource` (`string`): A GCP resource that is inside of the service perimeter.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.access_context_manager_ingress_policy.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `access_context_manager_ingress_policy` resource into the root Terraform configuration.\n', args=[]),
newAttrs(
ingress_policy_name,
resource,
timeouts=null
):: std.prune(a={
ingress_policy_name: ingress_policy_name,
resource: resource,
timeouts: timeouts,
}),
timeouts:: {
'#new':: d.fn(help='\n`google.access_context_manager_ingress_policy.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts`\nTerraform sub block.\n\n\n\n**Args**:\n - `create` (`string`): Set the `create` field on the resulting object. When `null`, the `create` field will be omitted from the resulting object.\n - `delete` (`string`): Set the `delete` field on the resulting object. When `null`, the `delete` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `timeouts` sub block.\n', args=[]),
new(
create=null,
delete=null
):: std.prune(a={
create: create,
delete: delete,
}),
},
'#withIngressPolicyName':: d.fn(help='`google.string.withIngressPolicyName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the ingress_policy_name field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `ingress_policy_name` field.\n', args=[]),
withIngressPolicyName(resourceLabel, value): {
resource+: {
google_access_context_manager_ingress_policy+: {
[resourceLabel]+: {
ingress_policy_name: value,
},
},
},
},
'#withResource':: d.fn(help='`google.string.withResource` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the resource field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `resource` field.\n', args=[]),
withResource(resourceLabel, value): {
resource+: {
google_access_context_manager_ingress_policy+: {
[resourceLabel]+: {
resource: value,
},
},
},
},
'#withTimeouts':: d.fn(help='`google.obj.withTimeouts` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will replace the map with the passed in `value`. If you wish to instead merge the\npassed in value to the existing map, use the [google.obj.withTimeoutsMixin](TODO) function.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]),
withTimeouts(resourceLabel, value): {
resource+: {
google_access_context_manager_ingress_policy+: {
[resourceLabel]+: {
timeouts: value,
},
},
},
},
'#withTimeoutsMixin':: d.fn(help='`google.obj.withTimeoutsMixin` constructs a mixin object that can be merged into the `obj`\nTerraform resource block to set or update the timeouts field.\n\nThis function will merge the passed in value to the existing map. If you wish\nto instead replace the entire map with the passed in `value`, use the [google.obj.withTimeouts](TODO)\nfunction.\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `timeouts` field.\n', args=[]),
withTimeoutsMixin(resourceLabel, value): {
resource+: {
google_access_context_manager_ingress_policy+: {
[resourceLabel]+: {
timeouts+: value,
},
},
},
},
}
8 changes: 4 additions & 4 deletions 4.x/_gen/resources/alloydb_backup.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet');
local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
{
'#':: d.pkg(name='alloydb_backup', url='', help='`alloydb_backup` represents the `google_alloydb_backup` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'),
'#new':: d.fn(help="\n`google.alloydb_backup.new` injects a new `google_alloydb_backup` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n google.alloydb_backup.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.alloydb_backup` using the reference:\n\n $._ref.google_alloydb_backup.some_id.get('id')\n\nThis is the same as directly entering `\"${ google_alloydb_backup.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `backup_id` (`string`): The ID of the alloydb backup.\n - `cluster_name` (`string`): The full resource name of the backup source cluster (e.g., projects/{project}/locations/{location}/clusters/{clusterId}).\n - `description` (`string`): User-provided description of the backup. When `null`, the `description` field will be omitted from the resulting object.\n - `labels` (`obj`): User-defined labels for the alloydb backup. When `null`, the `labels` field will be omitted from the resulting object.\n - `location` (`string`): The location where the alloydb backup should reside. When `null`, the `location` field will be omitted from the resulting object.\n - `project` (`string`): Set the `project` field on the resulting resource block. When `null`, the `project` field will be omitted from the resulting object.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.alloydb_backup.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]),
'#new':: d.fn(help="\n`google.alloydb_backup.new` injects a new `google_alloydb_backup` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n google.alloydb_backup.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.alloydb_backup` using the reference:\n\n $._ref.google_alloydb_backup.some_id.get('id')\n\nThis is the same as directly entering `\"${ google_alloydb_backup.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `backup_id` (`string`): The ID of the alloydb backup.\n - `cluster_name` (`string`): The full resource name of the backup source cluster (e.g., projects/{project}/locations/{location}/clusters/{clusterId}).\n - `description` (`string`): User-provided description of the backup. When `null`, the `description` field will be omitted from the resulting object.\n - `labels` (`obj`): User-defined labels for the alloydb backup. When `null`, the `labels` field will be omitted from the resulting object.\n - `location` (`string`): The location where the alloydb backup should reside.\n - `project` (`string`): Set the `project` field on the resulting resource block. When `null`, the `project` field will be omitted from the resulting object.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting resource block. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.alloydb_backup.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]),
new(
resourceLabel,
backup_id,
cluster_name,
location,
description=null,
labels=null,
location=null,
project=null,
timeouts=null,
_meta={}
Expand All @@ -27,13 +27,13 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.alloydb_backup.newAttrs` constructs a new object with attributes and blocks configured for the `alloydb_backup`\nTerraform resource.\n\nUnlike [google.alloydb_backup.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `backup_id` (`string`): The ID of the alloydb backup.\n - `cluster_name` (`string`): The full resource name of the backup source cluster (e.g., projects/{project}/locations/{location}/clusters/{clusterId}).\n - `description` (`string`): User-provided description of the backup. When `null`, the `description` field will be omitted from the resulting object.\n - `labels` (`obj`): User-defined labels for the alloydb backup. When `null`, the `labels` field will be omitted from the resulting object.\n - `location` (`string`): The location where the alloydb backup should reside. When `null`, the `location` field will be omitted from the resulting object.\n - `project` (`string`): Set the `project` field on the resulting object. When `null`, the `project` field will be omitted from the resulting object.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.alloydb_backup.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `alloydb_backup` resource into the root Terraform configuration.\n', args=[]),
'#newAttrs':: d.fn(help='\n`google.alloydb_backup.newAttrs` constructs a new object with attributes and blocks configured for the `alloydb_backup`\nTerraform resource.\n\nUnlike [google.alloydb_backup.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `backup_id` (`string`): The ID of the alloydb backup.\n - `cluster_name` (`string`): The full resource name of the backup source cluster (e.g., projects/{project}/locations/{location}/clusters/{clusterId}).\n - `description` (`string`): User-provided description of the backup. When `null`, the `description` field will be omitted from the resulting object.\n - `labels` (`obj`): User-defined labels for the alloydb backup. When `null`, the `labels` field will be omitted from the resulting object.\n - `location` (`string`): The location where the alloydb backup should reside.\n - `project` (`string`): Set the `project` field on the resulting object. When `null`, the `project` field will be omitted from the resulting object.\n - `timeouts` (`obj`): Set the `timeouts` field on the resulting object. When `null`, the `timeouts` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [google.alloydb_backup.timeouts.new](#fn-timeoutsnew) constructor.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `alloydb_backup` resource into the root Terraform configuration.\n', args=[]),
newAttrs(
backup_id,
cluster_name,
location,
description=null,
labels=null,
location=null,
project=null,
timeouts=null
):: std.prune(a={
Expand Down
Loading

0 comments on commit 6b10fee

Please sign in to comment.