promote logConfig to GA (#4822) (#423)

Co-authored-by: upodroid <cy@borg.dev>
Signed-off-by: Modular Magician <magic-modules@google.com>

Co-authored-by: upodroid <cy@borg.dev>
This commit is contained in:
The Magician 2021-06-01 15:32:25 -07:00 committed by GitHub
parent 89fbe0ffaf
commit 20b59f84ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 110 additions and 0 deletions

View file

@ -446,6 +446,19 @@ options:
- The grpcServiceName can only be ASCII.
required: false
type: str
log_config:
description:
- Configure logging on this health check.
required: false
type: dict
suboptions:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done.
required: false
default: 'false'
type: bool
project:
description:
- The Google Cloud Platform project to use.
@ -879,6 +892,18 @@ grpcHealthCheck:
- The grpcServiceName can only be ASCII.
returned: success
type: str
logConfig:
description:
- Configure logging on this health check.
returned: success
type: complex
contains:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which means
no health check logging will be done.
returned: success
type: bool
'''
################################################################################
@ -976,6 +1001,7 @@ def main():
type='dict',
options=dict(port=dict(type='int'), port_name=dict(type='str'), port_specification=dict(type='str'), grpc_service_name=dict(type='str')),
),
log_config=dict(type='dict', options=dict(enable=dict(type='bool'))),
)
)
@ -1041,6 +1067,7 @@ def resource_to_request(module):
u'sslHealthCheck': HealthCheckSslhealthcheck(module.params.get('ssl_health_check', {}), module).to_request(),
u'http2HealthCheck': HealthCheckHttp2healthcheck(module.params.get('http2_health_check', {}), module).to_request(),
u'grpcHealthCheck': HealthCheckGrpchealthcheck(module.params.get('grpc_health_check', {}), module).to_request(),
u'logConfig': HealthCheckLogconfig(module.params.get('log_config', {}), module).to_request(),
}
return_vals = {}
for k, v in request.items():
@ -1121,6 +1148,7 @@ def response_to_hash(module, response):
u'sslHealthCheck': HealthCheckSslhealthcheck(response.get(u'sslHealthCheck', {}), module).from_response(),
u'http2HealthCheck': HealthCheckHttp2healthcheck(response.get(u'http2HealthCheck', {}), module).from_response(),
u'grpcHealthCheck': HealthCheckGrpchealthcheck(response.get(u'grpcHealthCheck', {}), module).from_response(),
u'logConfig': HealthCheckLogconfig(response.get(u'logConfig', {}), module).from_response(),
}
@ -1359,5 +1387,20 @@ class HealthCheckGrpchealthcheck(object):
)
class HealthCheckLogconfig(object):
def __init__(self, request, module):
self.module = module
if request:
self.request = request
else:
self.request = {}
def to_request(self):
return remove_nones_from_dict({u'enable': self.request.get('enable')})
def from_response(self):
return remove_nones_from_dict({u'enable': self.request.get(u'enable')})
if __name__ == '__main__':
main()

View file

@ -494,6 +494,18 @@ resources:
- The grpcServiceName can only be ASCII.
returned: success
type: str
logConfig:
description:
- Configure logging on this health check.
returned: success
type: complex
contains:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done.
returned: success
type: bool
'''
################################################################################

View file

@ -441,6 +441,19 @@ options:
- The grpcServiceName can only be ASCII.
required: false
type: str
log_config:
description:
- Configure logging on this health check.
required: false
type: dict
suboptions:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done.
required: false
default: 'false'
type: bool
region:
description:
- The region where the regional health check resides.
@ -880,6 +893,18 @@ grpcHealthCheck:
- The grpcServiceName can only be ASCII.
returned: success
type: str
logConfig:
description:
- Configure logging on this health check.
returned: success
type: complex
contains:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which means
no health check logging will be done.
returned: success
type: bool
region:
description:
- The region where the regional health check resides.
@ -983,6 +1008,7 @@ def main():
type='dict',
options=dict(port=dict(type='int'), port_name=dict(type='str'), port_specification=dict(type='str'), grpc_service_name=dict(type='str')),
),
log_config=dict(type='dict', options=dict(enable=dict(type='bool'))),
region=dict(type='str'),
)
)
@ -1050,6 +1076,7 @@ def resource_to_request(module):
u'sslHealthCheck': RegionHealthCheckSslhealthcheck(module.params.get('ssl_health_check', {}), module).to_request(),
u'http2HealthCheck': RegionHealthCheckHttp2healthcheck(module.params.get('http2_health_check', {}), module).to_request(),
u'grpcHealthCheck': RegionHealthCheckGrpchealthcheck(module.params.get('grpc_health_check', {}), module).to_request(),
u'logConfig': RegionHealthCheckLogconfig(module.params.get('log_config', {}), module).to_request(),
}
return_vals = {}
for k, v in request.items():
@ -1130,6 +1157,7 @@ def response_to_hash(module, response):
u'sslHealthCheck': RegionHealthCheckSslhealthcheck(response.get(u'sslHealthCheck', {}), module).from_response(),
u'http2HealthCheck': RegionHealthCheckHttp2healthcheck(response.get(u'http2HealthCheck', {}), module).from_response(),
u'grpcHealthCheck': RegionHealthCheckGrpchealthcheck(response.get(u'grpcHealthCheck', {}), module).from_response(),
u'logConfig': RegionHealthCheckLogconfig(response.get(u'logConfig', {}), module).from_response(),
}
@ -1377,5 +1405,20 @@ class RegionHealthCheckGrpchealthcheck(object):
)
class RegionHealthCheckLogconfig(object):
def __init__(self, request, module):
self.module = module
if request:
self.request = request
else:
self.request = {}
def to_request(self):
return remove_nones_from_dict({u'enable': self.request.get('enable')})
def from_response(self):
return remove_nones_from_dict({u'enable': self.request.get(u'enable')})
if __name__ == '__main__':
main()

View file

@ -500,6 +500,18 @@ resources:
- The grpcServiceName can only be ASCII.
returned: success
type: str
logConfig:
description:
- Configure logging on this health check.
returned: success
type: complex
contains:
enable:
description:
- Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done.
returned: success
type: bool
region:
description:
- The region where the regional health check resides.