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.
Generate libsonnet source from libgenerator PR tf-libsonnet/libgenera…
…tor#205 Signed-off-by: tflibsonnet-ci <[email protected]>
- Loading branch information
1 parent
809bd85
commit 25a0503
Showing
32 changed files
with
1,276 additions
and
40 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
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='billing_project_info', url='', help='`billing_project_info` represents the `google_billing_project_info` 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.billing_project_info.new` injects a new `google_billing_project_info` 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.billing_project_info.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.billing_project_info` using the reference:\n\n $._ref.google_billing_project_info.some_id.get('id')\n\nThis is the same as directly entering `\"${ google_billing_project_info.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 - `billing_account` (`string`): The ID of the billing account associated with the project, if\nany. Set to empty string to disable billing for the project.\nFor example, \u0026#39;\u0026#34;012345-567890-ABCDEF\u0026#34;\u0026#39; or \u0026#39;\u0026#34;\u0026#34;\u0026#39;.\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.billing_project_info.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, | ||
billing_account, | ||
project=null, | ||
timeouts=null, | ||
_meta={} | ||
):: tf.withResource( | ||
type='google_billing_project_info', | ||
label=resourceLabel, | ||
attrs=self.newAttrs(billing_account=billing_account, project=project, timeouts=timeouts), | ||
_meta=_meta | ||
), | ||
'#newAttrs':: d.fn(help='\n`google.billing_project_info.newAttrs` constructs a new object with attributes and blocks configured for the `billing_project_info`\nTerraform resource.\n\nUnlike [google.billing_project_info.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 - `billing_account` (`string`): The ID of the billing account associated with the project, if\nany. Set to empty string to disable billing for the project.\nFor example, '"012345-567890-ABCDEF"' or '""'.\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.billing_project_info.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 `billing_project_info` resource into the root Terraform configuration.\n', args=[]), | ||
newAttrs( | ||
billing_account, | ||
project=null, | ||
timeouts=null | ||
):: std.prune(a={ | ||
billing_account: billing_account, | ||
project: project, | ||
timeouts: timeouts, | ||
}), | ||
timeouts:: { | ||
'#new':: d.fn(help='\n`google.billing_project_info.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 - `update` (`string`): Set the `update` field on the resulting object. When `null`, the `update` 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, | ||
update=null | ||
):: std.prune(a={ | ||
create: create, | ||
delete: delete, | ||
update: update, | ||
}), | ||
}, | ||
'#withBillingAccount':: d.fn(help='`google.string.withBillingAccount` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the billing_account 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 `billing_account` field.\n', args=[]), | ||
withBillingAccount(resourceLabel, value): { | ||
resource+: { | ||
google_billing_project_info+: { | ||
[resourceLabel]+: { | ||
billing_account: value, | ||
}, | ||
}, | ||
}, | ||
}, | ||
'#withProject':: d.fn(help='`google.string.withProject` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the project 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 `project` field.\n', args=[]), | ||
withProject(resourceLabel, value): { | ||
resource+: { | ||
google_billing_project_info+: { | ||
[resourceLabel]+: { | ||
project: 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_billing_project_info+: { | ||
[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_billing_project_info+: { | ||
[resourceLabel]+: { | ||
timeouts+: value, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} |
Oops, something went wrong.