google-cloud-config_service-v1 1.0.2 → 1.2.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 +4 -4
- data/README.md +30 -20
- data/lib/google/cloud/config/v1/config_pb.rb +1 -1
- data/lib/google/cloud/config/v1/config_services_pb.rb +1 -1
- data/lib/google/cloud/config_service/v1/config/client.rb +42 -25
- data/lib/google/cloud/config_service/v1/config/operations.rb +12 -15
- data/lib/google/cloud/config_service/v1/config/rest/client.rb +37 -25
- data/lib/google/cloud/config_service/v1/config/rest/operations.rb +43 -38
- data/lib/google/cloud/config_service/v1/config/rest/service_stub.rb +198 -140
- data/lib/google/cloud/config_service/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/config/v1/config.rb +24 -9
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +5 -5
@@ -87,7 +87,7 @@ module Google
|
|
87
87
|
# - The field cannot be updated, including changing its presence
|
88
88
|
# @!attribute [rw] service_account
|
89
89
|
# @return [::String]
|
90
|
-
#
|
90
|
+
# Required. User-specified Service Account (SA) credentials to be used when
|
91
91
|
# actuating resources.
|
92
92
|
# Format: `projects/{projectID}/serviceAccounts/{serviceAccount}`
|
93
93
|
# @!attribute [rw] import_existing_resources
|
@@ -234,14 +234,14 @@ module Google
|
|
234
234
|
# describes the resources and configs to be deployed.
|
235
235
|
# @!attribute [rw] gcs_source
|
236
236
|
# @return [::String]
|
237
|
-
#
|
237
|
+
# URI of an object in Google Cloud Storage.
|
238
238
|
# Format: `gs://{bucket}/{object}`
|
239
239
|
#
|
240
240
|
# URI may also specify an object version for zipped objects.
|
241
241
|
# Format: `gs://{bucket}/{object}#{version}`
|
242
242
|
# @!attribute [rw] git_source
|
243
243
|
# @return [::Google::Cloud::ConfigService::V1::GitSource]
|
244
|
-
#
|
244
|
+
# URI of a public Git repo.
|
245
245
|
# @!attribute [rw] input_values
|
246
246
|
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::ConfigService::V1::TerraformVariable}]
|
247
247
|
# Input variable values for the Terraform blueprint.
|
@@ -587,9 +587,9 @@ module Google
|
|
587
587
|
# @return [::Boolean]
|
588
588
|
# Output only. Identifies whether the user has requested cancellation of the
|
589
589
|
# operation. Operations that have successfully been cancelled have
|
590
|
-
#
|
591
|
-
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1
|
592
|
-
# `Code.CANCELLED`.
|
590
|
+
# {::Google::Longrunning::Operation#error google.longrunning.Operation.error}
|
591
|
+
# value with a {::Google::Rpc::Status#code google.rpc.Status.code} of `1`,
|
592
|
+
# corresponding to `Code.CANCELLED`.
|
593
593
|
# @!attribute [r] api_version
|
594
594
|
# @return [::String]
|
595
595
|
# Output only. API version used to start the operation.
|
@@ -994,7 +994,7 @@ module Google
|
|
994
994
|
# A response to a 'ListResources' call. Contains a list of Resources.
|
995
995
|
# @!attribute [rw] resources
|
996
996
|
# @return [::Array<::Google::Cloud::ConfigService::V1::Resource>]
|
997
|
-
# List of
|
997
|
+
# List of {::Google::Cloud::ConfigService::V1::Resource Resources}.
|
998
998
|
# @!attribute [rw] next_page_token
|
999
999
|
# @return [::String]
|
1000
1000
|
# A token to request the next page of resources from the 'ListResources'
|
@@ -1167,7 +1167,7 @@ module Google
|
|
1167
1167
|
# Optional. Current mode of preview.
|
1168
1168
|
# @!attribute [rw] service_account
|
1169
1169
|
# @return [::String]
|
1170
|
-
#
|
1170
|
+
# Required. User-specified Service Account (SA) credentials to be used when
|
1171
1171
|
# previewing resources.
|
1172
1172
|
# Format: `projects/{projectID}/serviceAccounts/{serviceAccount}`
|
1173
1173
|
# @!attribute [rw] artifacts_gcs_bucket
|
@@ -1222,6 +1222,12 @@ module Google
|
|
1222
1222
|
# @return [::String]
|
1223
1223
|
# Optional. The user-specified Terraform version constraint.
|
1224
1224
|
# Example: "=1.3.10".
|
1225
|
+
# @!attribute [rw] annotations
|
1226
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
1227
|
+
# Optional. Arbitrary key-value metadata storage e.g. to help client tools
|
1228
|
+
# identifiy preview during automation. See
|
1229
|
+
# https://google.aip.dev/148#annotations for details on format and size
|
1230
|
+
# limitations.
|
1225
1231
|
class Preview
|
1226
1232
|
include ::Google::Protobuf::MessageExts
|
1227
1233
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1235,6 +1241,15 @@ module Google
|
|
1235
1241
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1236
1242
|
end
|
1237
1243
|
|
1244
|
+
# @!attribute [rw] key
|
1245
|
+
# @return [::String]
|
1246
|
+
# @!attribute [rw] value
|
1247
|
+
# @return [::String]
|
1248
|
+
class AnnotationsEntry
|
1249
|
+
include ::Google::Protobuf::MessageExts
|
1250
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1251
|
+
end
|
1252
|
+
|
1238
1253
|
# Possible states of a preview.
|
1239
1254
|
module State
|
1240
1255
|
# The default value. This value is used if the state is unknown.
|
@@ -1460,7 +1475,7 @@ module Google
|
|
1460
1475
|
# A response to a `ListPreviews` call. Contains a list of Previews.
|
1461
1476
|
# @!attribute [rw] previews
|
1462
1477
|
# @return [::Array<::Google::Cloud::ConfigService::V1::Preview>]
|
1463
|
-
# List of
|
1478
|
+
# List of {::Google::Cloud::ConfigService::V1::Preview Previews}.
|
1464
1479
|
# @!attribute [rw] next_page_token
|
1465
1480
|
# @return [::String]
|
1466
1481
|
# Token to be supplied to the next ListPreviews request via `page_token`
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-config_service-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.24.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
148
|
- !ruby/object:Gem::Version
|
149
149
|
version: '0'
|
150
150
|
requirements: []
|
151
|
-
rubygems_version: 3.5.
|
151
|
+
rubygems_version: 3.5.23
|
152
152
|
signing_key:
|
153
153
|
specification_version: 4
|
154
154
|
summary: Creates and manages Google Cloud Platform resources and infrastructure.
|