-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:GoogleCloudPlatform/magic-modules
- Loading branch information
Showing
74 changed files
with
2,101 additions
and
1,163 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{{- $notes := newStringList -}} | ||
{{- $unknown := newStringList -}} | ||
{{- $breaking := newStringList -}} | ||
{{- $deprecations := newStringList -}} | ||
{{- $features := newStringList -}} | ||
{{- $improvements := newStringList -}} | ||
{{- $bugs := newStringList -}} | ||
{{- range . -}} | ||
{{if eq "note" .Type -}} | ||
{{$notes = append $notes (renderReleaseNote .) -}} | ||
{{else if eq "breaking-change" .Type -}} | ||
{{$breaking = append $breaking (renderReleaseNote .) -}} | ||
{{else if eq "deprecation" .Type -}} | ||
{{$deprecations = append $deprecations (renderReleaseNote .) -}} | ||
{{else if or (eq "new-resource" .Type) (eq "new-datasource" .Type) (eq "feature" .Type) -}} | ||
{{$features = append $features (renderReleaseNote .) -}} | ||
{{else if or (eq "improvement" .Type) (eq "enhancement" .Type) -}} | ||
{{$improvements = append $improvements (renderReleaseNote .) -}} | ||
{{ else if eq "bug" .Type -}} | ||
{{$bugs = append $bugs (renderReleaseNote .) -}} | ||
{{ else -}} | ||
{{$unknown = append $unknown (renderReleaseNote .) -}} | ||
{{end -}} | ||
{{- end -}} | ||
{{- if gt (len $unknown) 0 -}} | ||
UNKNOWN CHANGELOG TYPE: | ||
{{range $unknown | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $notes) 0 -}} | ||
NOTES: | ||
{{range $notes | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $deprecations) 0 -}} | ||
DEPRECATIONS: | ||
{{range $deprecations | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $breaking) 0 -}} | ||
BREAKING CHANGES: | ||
{{range $breaking | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $features) 0}} | ||
FEATURES: | ||
{{range $features | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $improvements) 0}} | ||
IMPROVEMENTS: | ||
{{range $improvements | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $bugs) 0}} | ||
BUG FIXES: | ||
{{range $bugs | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} |
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 @@ | ||
{{if eq "new-resource" .Type}}**New Resource:** {{else if eq "new-data-source" .Type}}**New Data Source:** {{ end }}{{.Text }} ([#{{- .PRNumber -}}]({{- .PRURL -}})) |
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 |
---|---|---|
|
@@ -12,3 +12,4 @@ run: | |
params: | ||
PROVIDER_NAME: "" | ||
TEST_DIR: "" | ||
SUBDIR: "" |
Submodule ansible
updated
from e0d101 to 2bbb08
Submodule terraform
updated
from 1ed9f4 to b86a93
Submodule terraform-beta
updated
from 057438 to 67c66a
Submodule terraform-mapper
updated
9 files
+10 −5 | google/compute_health_check.go | |
+3 −0 | google/compute_image.go | |
+3 −0 | google/compute_region_disk.go | |
+1 −1 | google/compute_router.go | |
+3 −0 | google/compute_target_https_proxy.go | |
+3 −0 | google/compute_target_ssl_proxy.go | |
+41 −0 | google/pubsub_subscription.go | |
+52 −0 | google/storage_bucket_iam.go | |
+33 −0 | google/utils.go |
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
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
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
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,30 @@ | ||
# Copyright 2019 Google Inc. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- !ruby/object:Provider::Ansible::Config | ||
datasources: !ruby/object:Overrides::ResourceOverrides | ||
Config: !ruby/object:Overrides::Ansible::ResourceOverride | ||
facts: !ruby/object:Provider::Ansible::FactsOverride | ||
has_filters: false | ||
Variable: !ruby/object:Overrides::Ansible::ResourceOverride | ||
facts: !ruby/object:Provider::Ansible::FactsOverride | ||
has_filters: false | ||
overrides: !ruby/object:Overrides::ResourceOverrides | ||
Variable: !ruby/object:Overrides::Ansible::ResourceOverride | ||
provider_helpers: | ||
- 'products/runtimeconfig/helpers/ansible/variable_delete_config.py' | ||
transport: !ruby/object:Overrides::Ansible::Transport | ||
encoder: encode_request | ||
files: !ruby/object:Provider::Config::Files | ||
resource: | ||
<%= lines(indent(compile('provider/ansible/resource~compile.yaml'), 4)) -%> |
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,23 @@ | ||
--- | ||
:facts: | ||
:Config: | ||
:version_added: '2.10' | ||
:Variable: | ||
:version_added: '2.10' | ||
:regular: | ||
:Config: | ||
:version_added: '2.10' | ||
:description: | ||
:version_added: '2.10' | ||
:name: | ||
:version_added: '2.10' | ||
:Variable: | ||
:version_added: '2.10' | ||
:value: | ||
:version_added: '2.10' | ||
:text: | ||
:version_added: '2.10' | ||
:name: | ||
:version_added: '2.10' | ||
:config: | ||
:version_added: '2.10' |
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,21 @@ | ||
# Copyright 2019 Google Inc. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
--- !ruby/object:Provider::Ansible::Example | ||
task: !ruby/object:Provider::Ansible::Task | ||
name: gcp_runtimeconfig_config | ||
code: | ||
name: <%= ctx[:name] %> | ||
description: 'My config' | ||
project: <%= ctx[:project] %> | ||
auth_kind: <%= ctx[:auth_kind] %> | ||
service_account_file: <%= ctx[:service_account_file] %> |
Oops, something went wrong.