Skip to content

Commit

Permalink
Generated with latest terraform provider 1.44.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kavya498 committed Oct 26, 2022
1 parent 35affbe commit 53ceecf
Show file tree
Hide file tree
Showing 811 changed files with 17,312 additions and 11,578 deletions.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: "ibm"
name: "cloudcollection"
version: "1.39.0"
version: "1.44.0"
readme: "README.md"
authors:
- "Jay W Carman"
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ibm_account_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
description:
- Retrieve an IBM Cloud 'ibm_account' resource
requirements:
- IBM-Cloud terraform-provider-ibm v1.43.0
- IBM-Cloud terraform-provider-ibm v1.44.2
- Terraform v0.12.20
options:
Expand Down Expand Up @@ -112,7 +112,7 @@ def run_module():
resource_type='ibm_account',
tf_type='data',
parameters=module.params,
ibm_provider_version='1.43.0',
ibm_provider_version='1.44.2',
tl_required_params=TL_REQUIRED_PARAMETERS,
tl_all_params=TL_ALL_PARAMETERS)

Expand Down
58 changes: 29 additions & 29 deletions plugins/modules/ibm_api_gateway_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,10 @@
- Create, update or destroy an IBM Cloud 'ibm_api_gateway_endpoint' resource
- This module does not support idempotency
requirements:
- IBM-Cloud terraform-provider-ibm v1.43.0
- IBM-Cloud terraform-provider-ibm v1.44.2
- Terraform v0.12.20
options:
open_api_doc_name:
description:
- (Required for new resource) Json File path
required: True
type: str
provider_id:
description:
- Provider ID of an endpoint allowable values user-defined and whisk
Expand All @@ -38,29 +33,34 @@
- (Required for new resource) Api Gateway Service Instance Crn
required: True
type: str
name:
managed:
description:
- (Required for new resource) Endpoint name
required: True
type: str
- Managed indicates if endpoint is online or offline.
required: False
type: bool
default: False
routes:
description:
- Invokable routes for an endpoint
required: False
type: list
elements: str
managed:
description:
- Managed indicates if endpoint is online or offline.
required: False
type: bool
default: False
type:
description:
- Action type of Endpoint ALoowable values are share, unshare, manage, unmanage
required: False
type: str
default: unshare
open_api_doc_name:
description:
- (Required for new resource) Json File path
required: True
type: str
name:
description:
- (Required for new resource) Endpoint name
required: True
type: str
id:
description:
- (Required when updating or destroying existing resource) IBM Cloud Resource ID.
Expand Down Expand Up @@ -107,20 +107,20 @@

# Top level parameter keys required by Terraform module
TL_REQUIRED_PARAMETERS = [
('open_api_doc_name', 'str'),
('service_instance_crn', 'str'),
('open_api_doc_name', 'str'),
('name', 'str'),
]

# All top level parameter keys supported by Terraform module
TL_ALL_PARAMETERS = [
'open_api_doc_name',
'provider_id',
'service_instance_crn',
'name',
'routes',
'managed',
'routes',
'type',
'open_api_doc_name',
'name',
]

# Params for Data source
Expand All @@ -137,28 +137,28 @@
from ansible_collections.ibm.cloudcollection.plugins.module_utils.ibmcloud import Terraform, ibmcloud_terraform
from ansible.module_utils.basic import env_fallback
module_args = dict(
open_api_doc_name=dict(
required=False,
type='str'),
provider_id=dict(
required=False,
type='str'),
service_instance_crn=dict(
required=False,
type='str'),
name=dict(
managed=dict(
required=False,
type='str'),
type='bool'),
routes=dict(
required=False,
elements='',
type='list'),
managed=dict(
required=False,
type='bool'),
type=dict(
required=False,
type='str'),
open_api_doc_name=dict(
required=False,
type='str'),
name=dict(
required=False,
type='str'),
id=dict(
required=False,
type='str'),
Expand Down Expand Up @@ -224,7 +224,7 @@ def run_module():
resource_type='ibm_api_gateway_endpoint',
tf_type='resource',
parameters=module.params,
ibm_provider_version='1.43.0',
ibm_provider_version='1.44.2',
tl_required_params=TL_REQUIRED_PARAMETERS,
tl_all_params=TL_ALL_PARAMETERS)

Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ibm_api_gateway_endpoint_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- Create, update or destroy an IBM Cloud 'ibm_api_gateway_endpoint_subscription' resource
- This module does not support idempotency
requirements:
- IBM-Cloud terraform-provider-ibm v1.43.0
- IBM-Cloud terraform-provider-ibm v1.44.2
- Terraform v0.12.20
options:
Expand Down Expand Up @@ -212,7 +212,7 @@ def run_module():
resource_type='ibm_api_gateway_endpoint_subscription',
tf_type='resource',
parameters=module.params,
ibm_provider_version='1.43.0',
ibm_provider_version='1.44.2',
tl_required_params=TL_REQUIRED_PARAMETERS,
tl_all_params=TL_ALL_PARAMETERS)

Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ibm_api_gateway_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
description:
- Retrieve an IBM Cloud 'ibm_api_gateway' resource
requirements:
- IBM-Cloud terraform-provider-ibm v1.43.0
- IBM-Cloud terraform-provider-ibm v1.44.2
- Terraform v0.12.20
options:
Expand Down Expand Up @@ -112,7 +112,7 @@ def run_module():
resource_type='ibm_api_gateway',
tf_type='data',
parameters=module.params,
ibm_provider_version='1.43.0',
ibm_provider_version='1.44.2',
tl_required_params=TL_REQUIRED_PARAMETERS,
tl_all_params=TL_ALL_PARAMETERS)

Expand Down
Loading

0 comments on commit 53ceecf

Please sign in to comment.