generated from tf-libsonnet/provider-libsonnet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency hashicorp/terraform-provider-aws to v4.49.0 (#18)
Signed-off-by: tflibsonnet-ci <[email protected]> Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
6ea6bb7
commit 82f4ea1
Showing
46 changed files
with
2,878 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
4.x/_gen/data/s3control_multi_region_access_point.libsonnet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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='s3control_multi_region_access_point', url='', help='`s3control_multi_region_access_point` represents the `aws_s3control_multi_region_access_point` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), | ||
'#new':: d.fn(help="\n`aws.data.s3control_multi_region_access_point.new` injects a new `data_aws_s3control_multi_region_access_point` Terraform `data source`\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 aws.data.s3control_multi_region_access_point.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.s3control_multi_region_access_point` using the reference:\n\n $._ref.data_aws_s3control_multi_region_access_point.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_s3control_multi_region_access_point.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 - `dataSrcLabel` (`string`): The name label of the block.\n - `account_id` (`string`): Set the `account_id` field on the resulting data source block. When `null`, the `account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting data source block.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), | ||
new( | ||
dataSrcLabel, | ||
name, | ||
account_id=null, | ||
_meta={} | ||
):: tf.withData( | ||
type='aws_s3control_multi_region_access_point', | ||
label=dataSrcLabel, | ||
attrs=self.newAttrs(account_id=account_id, name=name), | ||
_meta=_meta | ||
), | ||
'#newAttrs':: d.fn(help='\n`aws.data.s3control_multi_region_access_point.newAttrs` constructs a new object with attributes and blocks configured for the `s3control_multi_region_access_point`\nTerraform data source.\n\nUnlike [aws.data.s3control_multi_region_access_point.new](#fn-new), this function will not inject the `data source`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) 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 - `account_id` (`string`): Set the `account_id` field on the resulting object. When `null`, the `account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n\n**Returns**:\n - An attribute object that can be used with [tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) to construct a new `s3control_multi_region_access_point` data source into the root Terraform configuration.\n', args=[]), | ||
newAttrs( | ||
name, | ||
account_id=null | ||
):: std.prune(a={ | ||
account_id: account_id, | ||
name: name, | ||
}), | ||
'#withAccountId':: d.fn(help='`aws.string.withAccountId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the account_id field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `account_id` field.\n', args=[]), | ||
withAccountId(dataSrcLabel, value): { | ||
data+: { | ||
aws_s3control_multi_region_access_point+: { | ||
[dataSrcLabel]+: { | ||
account_id: value, | ||
}, | ||
}, | ||
}, | ||
}, | ||
'#withName':: d.fn(help='`aws.string.withName` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the name field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `name` field.\n', args=[]), | ||
withName(dataSrcLabel, value): { | ||
data+: { | ||
aws_s3control_multi_region_access_point+: { | ||
[dataSrcLabel]+: { | ||
name: value, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.