google-apis-config_v1 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a4ca3c09c50e93ee6e68f5c68539e67191145ed13b3c66b280a7d1b15fa0892
|
4
|
+
data.tar.gz: c3d16376a147d0c172d75491d9dc248d5f17a25a90fe83d6dc270f2af3b1268f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de5a9f7bf012d97a375b005cbafa74df3f7900965590484667f619b1f1d49c3fa586238892c270f788aedb363f4508483588709e601227801099ad3f13d7d274
|
7
|
+
data.tar.gz: 705a46da5b3dfe4253d62b924069e1aa590f3c74aec17873dc909fb935144127e5a4af87f62f8c697533539a75a387ce44fe0cea0bc0eea7850b8b168317164b
|
data/CHANGELOG.md
CHANGED
@@ -347,6 +347,11 @@ module Google
|
|
347
347
|
# @return [String]
|
348
348
|
attr_accessor :name
|
349
349
|
|
350
|
+
# ProviderConfig contains the provider configurations.
|
351
|
+
# Corresponds to the JSON property `providerConfig`
|
352
|
+
# @return [Google::Apis::ConfigV1::ProviderConfig]
|
353
|
+
attr_accessor :provider_config
|
354
|
+
|
350
355
|
# Optional. Input to control quota checks for resources in terraform
|
351
356
|
# configuration files. There are limited resources on which quota validation
|
352
357
|
# applies.
|
@@ -427,6 +432,7 @@ module Google
|
|
427
432
|
@latest_revision = args[:latest_revision] if args.key?(:latest_revision)
|
428
433
|
@lock_state = args[:lock_state] if args.key?(:lock_state)
|
429
434
|
@name = args[:name] if args.key?(:name)
|
435
|
+
@provider_config = args[:provider_config] if args.key?(:provider_config)
|
430
436
|
@quota_validation = args[:quota_validation] if args.key?(:quota_validation)
|
431
437
|
@service_account = args[:service_account] if args.key?(:service_account)
|
432
438
|
@state = args[:state] if args.key?(:state)
|
@@ -1369,6 +1375,11 @@ module Google
|
|
1369
1375
|
# @return [String]
|
1370
1376
|
attr_accessor :preview_mode
|
1371
1377
|
|
1378
|
+
# ProviderConfig contains the provider configurations.
|
1379
|
+
# Corresponds to the JSON property `providerConfig`
|
1380
|
+
# @return [Google::Apis::ConfigV1::ProviderConfig]
|
1381
|
+
attr_accessor :provider_config
|
1382
|
+
|
1372
1383
|
# Required. User-specified Service Account (SA) credentials to be used when
|
1373
1384
|
# previewing resources. Format: `projects/`projectID`/serviceAccounts/`
|
1374
1385
|
# serviceAccount``
|
@@ -1432,6 +1443,7 @@ module Google
|
|
1432
1443
|
@name = args[:name] if args.key?(:name)
|
1433
1444
|
@preview_artifacts = args[:preview_artifacts] if args.key?(:preview_artifacts)
|
1434
1445
|
@preview_mode = args[:preview_mode] if args.key?(:preview_mode)
|
1446
|
+
@provider_config = args[:provider_config] if args.key?(:provider_config)
|
1435
1447
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1436
1448
|
@state = args[:state] if args.key?(:state)
|
1437
1449
|
@terraform_blueprint = args[:terraform_blueprint] if args.key?(:terraform_blueprint)
|
@@ -1621,6 +1633,25 @@ module Google
|
|
1621
1633
|
end
|
1622
1634
|
end
|
1623
1635
|
|
1636
|
+
# ProviderConfig contains the provider configurations.
|
1637
|
+
class ProviderConfig
|
1638
|
+
include Google::Apis::Core::Hashable
|
1639
|
+
|
1640
|
+
# Optional. ProviderSource specifies the source type of the provider.
|
1641
|
+
# Corresponds to the JSON property `sourceType`
|
1642
|
+
# @return [String]
|
1643
|
+
attr_accessor :source_type
|
1644
|
+
|
1645
|
+
def initialize(**args)
|
1646
|
+
update!(**args)
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# Update properties of this object
|
1650
|
+
def update!(**args)
|
1651
|
+
@source_type = args[:source_type] if args.key?(:source_type)
|
1652
|
+
end
|
1653
|
+
end
|
1654
|
+
|
1624
1655
|
# Resource represents a Google Cloud Platform resource actuated by IM. Resources
|
1625
1656
|
# are child resources of Revisions.
|
1626
1657
|
class Resource
|
@@ -1929,6 +1960,11 @@ module Google
|
|
1929
1960
|
# @return [String]
|
1930
1961
|
attr_accessor :name
|
1931
1962
|
|
1963
|
+
# ProviderConfig contains the provider configurations.
|
1964
|
+
# Corresponds to the JSON property `providerConfig`
|
1965
|
+
# @return [Google::Apis::ConfigV1::ProviderConfig]
|
1966
|
+
attr_accessor :provider_config
|
1967
|
+
|
1932
1968
|
# Optional. Input to control quota checks for resources in terraform
|
1933
1969
|
# configuration files. There are limited resources on which quota validation
|
1934
1970
|
# applies.
|
@@ -2013,6 +2049,7 @@ module Google
|
|
2013
2049
|
@import_existing_resources = args[:import_existing_resources] if args.key?(:import_existing_resources)
|
2014
2050
|
@logs = args[:logs] if args.key?(:logs)
|
2015
2051
|
@name = args[:name] if args.key?(:name)
|
2052
|
+
@provider_config = args[:provider_config] if args.key?(:provider_config)
|
2016
2053
|
@quota_validation = args[:quota_validation] if args.key?(:quota_validation)
|
2017
2054
|
@quota_validation_results = args[:quota_validation_results] if args.key?(:quota_validation_results)
|
2018
2055
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConfigV1
|
18
18
|
# Version of the google-apis-config_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250813"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -244,6 +244,12 @@ module Google
|
|
244
244
|
include Google::Apis::Core::JsonObjectSupport
|
245
245
|
end
|
246
246
|
|
247
|
+
class ProviderConfig
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
247
253
|
class Resource
|
248
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
255
|
|
@@ -425,6 +431,8 @@ module Google
|
|
425
431
|
property :latest_revision, as: 'latestRevision'
|
426
432
|
property :lock_state, as: 'lockState'
|
427
433
|
property :name, as: 'name'
|
434
|
+
property :provider_config, as: 'providerConfig', class: Google::Apis::ConfigV1::ProviderConfig, decorator: Google::Apis::ConfigV1::ProviderConfig::Representation
|
435
|
+
|
428
436
|
property :quota_validation, as: 'quotaValidation'
|
429
437
|
property :service_account, as: 'serviceAccount'
|
430
438
|
property :state, as: 'state'
|
@@ -686,6 +694,8 @@ module Google
|
|
686
694
|
property :preview_artifacts, as: 'previewArtifacts', class: Google::Apis::ConfigV1::PreviewArtifacts, decorator: Google::Apis::ConfigV1::PreviewArtifacts::Representation
|
687
695
|
|
688
696
|
property :preview_mode, as: 'previewMode'
|
697
|
+
property :provider_config, as: 'providerConfig', class: Google::Apis::ConfigV1::ProviderConfig, decorator: Google::Apis::ConfigV1::ProviderConfig::Representation
|
698
|
+
|
689
699
|
property :service_account, as: 'serviceAccount'
|
690
700
|
property :state, as: 'state'
|
691
701
|
property :terraform_blueprint, as: 'terraformBlueprint', class: Google::Apis::ConfigV1::TerraformBlueprint, decorator: Google::Apis::ConfigV1::TerraformBlueprint::Representation
|
@@ -747,6 +757,13 @@ module Google
|
|
747
757
|
end
|
748
758
|
end
|
749
759
|
|
760
|
+
class ProviderConfig
|
761
|
+
# @private
|
762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
763
|
+
property :source_type, as: 'sourceType'
|
764
|
+
end
|
765
|
+
end
|
766
|
+
|
750
767
|
class Resource
|
751
768
|
# @private
|
752
769
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -833,6 +850,8 @@ module Google
|
|
833
850
|
property :import_existing_resources, as: 'importExistingResources'
|
834
851
|
property :logs, as: 'logs'
|
835
852
|
property :name, as: 'name'
|
853
|
+
property :provider_config, as: 'providerConfig', class: Google::Apis::ConfigV1::ProviderConfig, decorator: Google::Apis::ConfigV1::ProviderConfig::Representation
|
854
|
+
|
836
855
|
property :quota_validation, as: 'quotaValidation'
|
837
856
|
property :quota_validation_results, as: 'quotaValidationResults'
|
838
857
|
property :service_account, as: 'serviceAccount'
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-config_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-config_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.12.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-config_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|