Skip to content

Commit

Permalink
Update dependency hashicorp/terraform-provider-google to v4.68.0 (#35)
Browse files Browse the repository at this point in the history
Signed-off-by: tflibsonnet-ci <[email protected]>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
  • Loading branch information
tflibsonnet-ci and renovate[bot] committed Jun 5, 2023
1 parent 9f2b9f9 commit 7a180dd
Show file tree
Hide file tree
Showing 200 changed files with 14,853 additions and 45 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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_access_policy_iam_policy', url='', help='`access_context_manager_access_policy_iam_policy` represents the `google_access_context_manager_access_policy_iam_policy` 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`google.data.access_context_manager_access_policy_iam_policy.new` injects a new `data_google_access_context_manager_access_policy_iam_policy` 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 google.data.access_context_manager_access_policy_iam_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.data.access_context_manager_access_policy_iam_policy` using the reference:\n\n $._ref.data_google_access_context_manager_access_policy_iam_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_google_access_context_manager_access_policy_iam_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 - `dataSrcLabel` (`string`): The name label of the block.\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,
_meta={}
):: tf.withData(
type='google_access_context_manager_access_policy_iam_policy',
label=dataSrcLabel,
attrs=self.newAttrs(name=name),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.data.access_context_manager_access_policy_iam_policy.newAttrs` constructs a new object with attributes and blocks configured for the `access_context_manager_access_policy_iam_policy`\nTerraform data source.\n\nUnlike [google.data.access_context_manager_access_policy_iam_policy.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 - `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 `access_context_manager_access_policy_iam_policy` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
name
):: std.prune(a={
name: name,
}),
'#withName':: d.fn(help='`google.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+: {
google_access_context_manager_access_policy_iam_policy+: {
[dataSrcLabel]+: {
name: value,
},
},
},
},
}
45 changes: 45 additions & 0 deletions 4.x/_gen/data/apigee_environment_iam_policy.libsonnet
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='apigee_environment_iam_policy', url='', help='`apigee_environment_iam_policy` represents the `google_apigee_environment_iam_policy` 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`google.data.apigee_environment_iam_policy.new` injects a new `data_google_apigee_environment_iam_policy` 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 google.data.apigee_environment_iam_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.data.apigee_environment_iam_policy` using the reference:\n\n $._ref.data_google_apigee_environment_iam_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_google_apigee_environment_iam_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 - `dataSrcLabel` (`string`): The name label of the block.\n - `env_id` (`string`): Set the `env_id` field on the resulting data source block.\n - `org_id` (`string`): Set the `org_id` 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,
env_id,
org_id,
_meta={}
):: tf.withData(
type='google_apigee_environment_iam_policy',
label=dataSrcLabel,
attrs=self.newAttrs(env_id=env_id, org_id=org_id),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.data.apigee_environment_iam_policy.newAttrs` constructs a new object with attributes and blocks configured for the `apigee_environment_iam_policy`\nTerraform data source.\n\nUnlike [google.data.apigee_environment_iam_policy.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 - `env_id` (`string`): Set the `env_id` field on the resulting object.\n - `org_id` (`string`): Set the `org_id` 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 `apigee_environment_iam_policy` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
env_id,
org_id
):: std.prune(a={
env_id: env_id,
org_id: org_id,
}),
'#withEnvId':: d.fn(help='`google.string.withEnvId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the env_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 `env_id` field.\n', args=[]),
withEnvId(dataSrcLabel, value): {
data+: {
google_apigee_environment_iam_policy+: {
[dataSrcLabel]+: {
env_id: value,
},
},
},
},
'#withOrgId':: d.fn(help='`google.string.withOrgId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the org_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 `org_id` field.\n', args=[]),
withOrgId(dataSrcLabel, value): {
data+: {
google_apigee_environment_iam_policy+: {
[dataSrcLabel]+: {
org_id: value,
},
},
},
},
}
58 changes: 58 additions & 0 deletions 4.x/_gen/data/artifact_registry_repository_iam_policy.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
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='artifact_registry_repository_iam_policy', url='', help='`artifact_registry_repository_iam_policy` represents the `google_artifact_registry_repository_iam_policy` 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`google.data.artifact_registry_repository_iam_policy.new` injects a new `data_google_artifact_registry_repository_iam_policy` 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 google.data.artifact_registry_repository_iam_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.data.artifact_registry_repository_iam_policy` using the reference:\n\n $._ref.data_google_artifact_registry_repository_iam_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_google_artifact_registry_repository_iam_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 - `dataSrcLabel` (`string`): The name label of the block.\n - `location` (`string`): Set the `location` field on the resulting data source block. When `null`, the `location` field will be omitted from the resulting object.\n - `project` (`string`): Set the `project` field on the resulting data source block. When `null`, the `project` field will be omitted from the resulting object.\n - `repository` (`string`): Set the `repository` 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,
repository,
location=null,
project=null,
_meta={}
):: tf.withData(
type='google_artifact_registry_repository_iam_policy',
label=dataSrcLabel,
attrs=self.newAttrs(location=location, project=project, repository=repository),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.data.artifact_registry_repository_iam_policy.newAttrs` constructs a new object with attributes and blocks configured for the `artifact_registry_repository_iam_policy`\nTerraform data source.\n\nUnlike [google.data.artifact_registry_repository_iam_policy.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 - `location` (`string`): Set the `location` field on the resulting object. 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 - `repository` (`string`): Set the `repository` 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 `artifact_registry_repository_iam_policy` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
repository,
location=null,
project=null
):: std.prune(a={
location: location,
project: project,
repository: repository,
}),
'#withLocation':: d.fn(help='`google.string.withLocation` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the location 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 `location` field.\n', args=[]),
withLocation(dataSrcLabel, value): {
data+: {
google_artifact_registry_repository_iam_policy+: {
[dataSrcLabel]+: {
location: value,
},
},
},
},
'#withProject':: d.fn(help='`google.string.withProject` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the project 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 `project` field.\n', args=[]),
withProject(dataSrcLabel, value): {
data+: {
google_artifact_registry_repository_iam_policy+: {
[dataSrcLabel]+: {
project: value,
},
},
},
},
'#withRepository':: d.fn(help='`google.string.withRepository` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the repository 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 `repository` field.\n', args=[]),
withRepository(dataSrcLabel, value): {
data+: {
google_artifact_registry_repository_iam_policy+: {
[dataSrcLabel]+: {
repository: value,
},
},
},
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
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='bigquery_analytics_hub_data_exchange_iam_policy', url='', help='`bigquery_analytics_hub_data_exchange_iam_policy` represents the `google_bigquery_analytics_hub_data_exchange_iam_policy` 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`google.data.bigquery_analytics_hub_data_exchange_iam_policy.new` injects a new `data_google_bigquery_analytics_hub_data_exchange_iam_policy` 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 google.data.bigquery_analytics_hub_data_exchange_iam_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `google.data.bigquery_analytics_hub_data_exchange_iam_policy` using the reference:\n\n $._ref.data_google_bigquery_analytics_hub_data_exchange_iam_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_google_bigquery_analytics_hub_data_exchange_iam_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 - `dataSrcLabel` (`string`): The name label of the block.\n - `data_exchange_id` (`string`): Set the `data_exchange_id` field on the resulting data source block.\n - `location` (`string`): Set the `location` field on the resulting data source block. When `null`, the `location` field will be omitted from the resulting object.\n - `project` (`string`): Set the `project` field on the resulting data source block. When `null`, the `project` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]),
new(
dataSrcLabel,
data_exchange_id,
location=null,
project=null,
_meta={}
):: tf.withData(
type='google_bigquery_analytics_hub_data_exchange_iam_policy',
label=dataSrcLabel,
attrs=self.newAttrs(data_exchange_id=data_exchange_id, location=location, project=project),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`google.data.bigquery_analytics_hub_data_exchange_iam_policy.newAttrs` constructs a new object with attributes and blocks configured for the `bigquery_analytics_hub_data_exchange_iam_policy`\nTerraform data source.\n\nUnlike [google.data.bigquery_analytics_hub_data_exchange_iam_policy.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 - `data_exchange_id` (`string`): Set the `data_exchange_id` field on the resulting object.\n - `location` (`string`): Set the `location` field on the resulting object. 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\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 `bigquery_analytics_hub_data_exchange_iam_policy` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
data_exchange_id,
location=null,
project=null
):: std.prune(a={
data_exchange_id: data_exchange_id,
location: location,
project: project,
}),
'#withDataExchangeId':: d.fn(help='`google.string.withDataExchangeId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the data_exchange_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 `data_exchange_id` field.\n', args=[]),
withDataExchangeId(dataSrcLabel, value): {
data+: {
google_bigquery_analytics_hub_data_exchange_iam_policy+: {
[dataSrcLabel]+: {
data_exchange_id: value,
},
},
},
},
'#withLocation':: d.fn(help='`google.string.withLocation` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the location 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 `location` field.\n', args=[]),
withLocation(dataSrcLabel, value): {
data+: {
google_bigquery_analytics_hub_data_exchange_iam_policy+: {
[dataSrcLabel]+: {
location: value,
},
},
},
},
'#withProject':: d.fn(help='`google.string.withProject` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the project 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 `project` field.\n', args=[]),
withProject(dataSrcLabel, value): {
data+: {
google_bigquery_analytics_hub_data_exchange_iam_policy+: {
[dataSrcLabel]+: {
project: value,
},
},
},
},
}
Loading

0 comments on commit 7a180dd

Please sign in to comment.