google-cloud-config_delivery-v1 0.a → 0.1.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/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +154 -8
- data/lib/google/cloud/config_delivery/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/client.rb +3222 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/credentials.rb +47 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/operations.rb +813 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/paths.rb +188 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/rest/client.rb +3029 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/rest/operations.rb +914 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/rest/service_stub.rb +1617 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery/rest.rb +55 -0
- data/lib/google/cloud/config_delivery/v1/config_delivery.rb +57 -0
- data/lib/google/cloud/config_delivery/v1/rest.rb +38 -0
- data/lib/google/cloud/config_delivery/v1/version.rb +7 -2
- data/lib/google/cloud/config_delivery/v1.rb +45 -0
- data/lib/google/cloud/configdelivery/v1/config_delivery_pb.rb +115 -0
- data/lib/google/cloud/configdelivery/v1/config_delivery_services_pb.rb +95 -0
- data/lib/google-cloud-config_delivery-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +473 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +227 -0
- data/proto_docs/google/cloud/configdelivery/v1/config_delivery.rb +1384 -0
- data/proto_docs/google/longrunning/operations.rb +173 -0
- data/proto_docs/google/protobuf/any.rb +145 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- metadata +82 -9
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/config_delivery/v1/version"
|
24
|
+
require "google/cloud/config_delivery/v1/bindings_override"
|
25
|
+
|
26
|
+
require "google/cloud/config_delivery/v1/config_delivery/credentials"
|
27
|
+
require "google/cloud/config_delivery/v1/config_delivery/paths"
|
28
|
+
require "google/cloud/config_delivery/v1/config_delivery/rest/operations"
|
29
|
+
require "google/cloud/config_delivery/v1/config_delivery/rest/client"
|
30
|
+
|
31
|
+
module Google
|
32
|
+
module Cloud
|
33
|
+
module ConfigDelivery
|
34
|
+
module V1
|
35
|
+
##
|
36
|
+
# ConfigDelivery service manages the deployment of kubernetes configuration to
|
37
|
+
# a fleet of kubernetes clusters.
|
38
|
+
#
|
39
|
+
# To load this service and instantiate a REST client:
|
40
|
+
#
|
41
|
+
# require "google/cloud/config_delivery/v1/config_delivery/rest"
|
42
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Rest::Client.new
|
43
|
+
#
|
44
|
+
module ConfigDelivery
|
45
|
+
# Client for the REST transport
|
46
|
+
module Rest
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
55
|
+
require "google/cloud/config_delivery/v1/config_delivery/rest/helpers" if ::File.file? helper_path
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/common"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/config_delivery/v1/version"
|
24
|
+
|
25
|
+
require "google/cloud/config_delivery/v1/config_delivery/credentials"
|
26
|
+
require "google/cloud/config_delivery/v1/config_delivery/paths"
|
27
|
+
require "google/cloud/config_delivery/v1/config_delivery/operations"
|
28
|
+
require "google/cloud/config_delivery/v1/config_delivery/client"
|
29
|
+
require "google/cloud/config_delivery/v1/config_delivery/rest"
|
30
|
+
|
31
|
+
module Google
|
32
|
+
module Cloud
|
33
|
+
module ConfigDelivery
|
34
|
+
module V1
|
35
|
+
##
|
36
|
+
# ConfigDelivery service manages the deployment of kubernetes configuration to
|
37
|
+
# a fleet of kubernetes clusters.
|
38
|
+
#
|
39
|
+
# @example Load this service and instantiate a gRPC client
|
40
|
+
#
|
41
|
+
# require "google/cloud/config_delivery/v1/config_delivery"
|
42
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Client.new
|
43
|
+
#
|
44
|
+
# @example Load this service and instantiate a REST client
|
45
|
+
#
|
46
|
+
# require "google/cloud/config_delivery/v1/config_delivery/rest"
|
47
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Rest::Client.new
|
48
|
+
#
|
49
|
+
module ConfigDelivery
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
helper_path = ::File.join __dir__, "config_delivery", "helpers.rb"
|
57
|
+
require "google/cloud/config_delivery/v1/config_delivery/helpers" if ::File.file? helper_path
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/config_delivery/v1/config_delivery/rest"
|
20
|
+
require "google/cloud/config_delivery/v1/bindings_override"
|
21
|
+
require "google/cloud/config_delivery/v1/version"
|
22
|
+
|
23
|
+
module Google
|
24
|
+
module Cloud
|
25
|
+
module ConfigDelivery
|
26
|
+
##
|
27
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
28
|
+
#
|
29
|
+
# @example
|
30
|
+
#
|
31
|
+
# require "google/cloud/config_delivery/v1/rest"
|
32
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Rest::Client.new
|
33
|
+
#
|
34
|
+
module V1
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -1,10 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Copyright 2025 Google LLC
|
2
4
|
#
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
6
|
# you may not use this file except in compliance with the License.
|
5
7
|
# You may obtain a copy of the License at
|
6
8
|
#
|
7
|
-
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
10
|
#
|
9
11
|
# Unless required by applicable law or agreed to in writing, software
|
10
12
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
@@ -12,11 +14,14 @@
|
|
12
14
|
# See the License for the specific language governing permissions and
|
13
15
|
# limitations under the License.
|
14
16
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
15
20
|
module Google
|
16
21
|
module Cloud
|
17
22
|
module ConfigDelivery
|
18
23
|
module V1
|
19
|
-
VERSION = "0.
|
24
|
+
VERSION = "0.1.0"
|
20
25
|
end
|
21
26
|
end
|
22
27
|
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/config_delivery/v1/config_delivery"
|
20
|
+
require "google/cloud/config_delivery/v1/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module ConfigDelivery
|
25
|
+
##
|
26
|
+
# API client module.
|
27
|
+
#
|
28
|
+
# @example Load this package, including all its services, and instantiate a gRPC client
|
29
|
+
#
|
30
|
+
# require "google/cloud/config_delivery/v1"
|
31
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Client.new
|
32
|
+
#
|
33
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
34
|
+
#
|
35
|
+
# require "google/cloud/config_delivery/v1"
|
36
|
+
# client = ::Google::Cloud::ConfigDelivery::V1::ConfigDelivery::Rest::Client.new
|
37
|
+
#
|
38
|
+
module V1
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
helper_path = ::File.join __dir__, "v1", "_helpers.rb"
|
45
|
+
require "google/cloud/config_delivery/v1/_helpers" if ::File.file? helper_path
|
@@ -0,0 +1,115 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: google/cloud/configdelivery/v1/config_delivery.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require 'google/api/annotations_pb'
|
8
|
+
require 'google/api/client_pb'
|
9
|
+
require 'google/api/field_behavior_pb'
|
10
|
+
require 'google/api/field_info_pb'
|
11
|
+
require 'google/api/resource_pb'
|
12
|
+
require 'google/longrunning/operations_pb'
|
13
|
+
require 'google/protobuf/empty_pb'
|
14
|
+
require 'google/protobuf/field_mask_pb'
|
15
|
+
require 'google/protobuf/timestamp_pb'
|
16
|
+
|
17
|
+
|
18
|
+
descriptor_data = "\n4google/cloud/configdelivery/v1/config_delivery.proto\x12\x1egoogle.cloud.configdelivery.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xca\x03\n\x0eResourceBundle\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32:.google.cloud.configdelivery.v1.ResourceBundle.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x9e\x01\xea\x41\x9a\x01\n,configdelivery.googleapis.com/ResourceBundle\x12Iprojects/{project}/locations/{location}/resourceBundles/{resource_bundle}*\x0fresourceBundles2\x0eresourceBundle\"\xbf\x01\n\x1aListResourceBundlesRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,configdelivery.googleapis.com/ResourceBundle\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x9a\x01\n\x1bListResourceBundlesResponse\x12H\n\x10resource_bundles\x18\x01 \x03(\x0b\x32..google.cloud.configdelivery.v1.ResourceBundle\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"^\n\x18GetResourceBundleRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,configdelivery.googleapis.com/ResourceBundle\"\xf3\x01\n\x1b\x43reateResourceBundleRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\x12,configdelivery.googleapis.com/ResourceBundle\x12\x1f\n\x12resource_bundle_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12L\n\x0fresource_bundle\x18\x03 \x01(\x0b\x32..google.cloud.configdelivery.v1.ResourceBundleB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xc2\x01\n\x1bUpdateResourceBundleRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12L\n\x0fresource_bundle\x18\x02 \x01(\x0b\x32..google.cloud.configdelivery.v1.ResourceBundleB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\x96\x01\n\x1b\x44\x65leteResourceBundleRequest\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,configdelivery.googleapis.com/ResourceBundle\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"\xd8\r\n\x0c\x46leetPackage\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12M\n\x06labels\x18\x04 \x03(\x0b\x32\x38.google.cloud.configdelivery.v1.FleetPackage.LabelsEntryB\x03\xe0\x41\x01\x12j\n\x18resource_bundle_selector\x18\x05 \x01(\x0b\x32\x43.google.cloud.configdelivery.v1.FleetPackage.ResourceBundleSelectorB\x03\xe0\x41\x02\x12H\n\x06target\x18\t \x01(\x0b\x32\x33.google.cloud.configdelivery.v1.FleetPackage.TargetB\x03\xe0\x41\x01\x12N\n\x10rollout_strategy\x18\n \x01(\x0b\x32/.google.cloud.configdelivery.v1.RolloutStrategyB\x03\xe0\x41\x01\x12[\n\x10variant_selector\x18\x0b \x01(\x0b\x32<.google.cloud.configdelivery.v1.FleetPackage.VariantSelectorB\x03\xe0\x41\x02\x12\x43\n\x04info\x18\r \x01(\x0b\x32\x30.google.cloud.configdelivery.v1.FleetPackageInfoB\x03\xe0\x41\x03\x12\x63\n\x1b\x64\x65letion_propagation_policy\x18\x0f \x01(\x0e\x32\x39.google.cloud.configdelivery.v1.DeletionPropagationPolicyB\x03\xe0\x41\x01\x12\x46\n\x05state\x18\x10 \x01(\x0e\x32\x32.google.cloud.configdelivery.v1.FleetPackage.StateB\x03\xe0\x41\x01\x1a\xe2\x01\n\x16ResourceBundleSelector\x12Y\n\x0fresource_bundle\x18\x01 \x01(\x0b\x32>.google.cloud.configdelivery.v1.FleetPackage.ResourceBundleTagH\x00\x12\x63\n\x16\x63loud_build_repository\x18\x03 \x01(\x0b\x32\x41.google.cloud.configdelivery.v1.FleetPackage.CloudBuildRepositoryH\x00\x42\x08\n\x06source\x1ai\n\x11ResourceBundleTag\x12\x42\n\x04name\x18\x01 \x01(\tB4\xe0\x41\x02\xfa\x41.\n,configdelivery.googleapis.com/ResourceBundle\x12\x10\n\x03tag\x18\x02 \x01(\tB\x03\xe0\x41\x02\x1a\xc2\x01\n\x14\x43loudBuildRepository\x12\x1f\n\x10variants_pattern\x18\x05 \x01(\tB\x03\xe0\x41\x01H\x00\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudbuild.googleapis.com/Repository\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03tag\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fservice_account\x18\x04 \x01(\tB\x03\xe0\x41\x02\x42\n\n\x08variants\x1aJ\n\x06Target\x12\x36\n\x05\x66leet\x18\x01 \x01(\x0b\x32%.google.cloud.configdelivery.v1.FleetH\x00\x42\x08\n\x06target\x1a\x43\n\x0fVariantSelector\x12$\n\x15variant_name_template\x18\x01 \x01(\tB\x03\xe0\x41\x02H\x00\x42\n\n\x08strategy\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"9\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\r\n\tSUSPENDED\x10\x02:\x94\x01\xea\x41\x90\x01\n*configdelivery.googleapis.com/FleetPackage\x12\x45projects/{project}/locations/{location}/fleetPackages/{fleet_package}*\rfleetPackages2\x0c\x66leetPackage\"\x97\x03\n\x10\x46leetPackageInfo\x12\x45\n\x0e\x61\x63tive_rollout\x18\x01 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\x12M\n\x16last_completed_rollout\x18\x02 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\x12M\n\x05state\x18\x03 \x01(\x0e\x32\x36.google.cloud.configdelivery.v1.FleetPackageInfo.StateB\x06\xe0\x41\x03\xe0\x41\x01\x12I\n\x06\x65rrors\x18\x06 \x03(\x0b\x32\x31.google.cloud.configdelivery.v1.FleetPackageErrorB\x06\xe0\x41\x03\xe0\x41\x01\"S\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\r\n\tSUSPENDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04\"/\n\x11\x46leetPackageError\x12\x1a\n\rerror_message\x18\x01 \x01(\tB\x03\xe0\x41\x01\"\xae\x05\n\x0b\x43lusterInfo\x12<\n\nmembership\x18\x01 \x01(\tB(\xe0\x41\x03\xfa\x41\"\n gkehub.googleapis.com/Membership\x12R\n\x07\x64\x65sired\x18\x02 \x01(\x0b\x32<.google.cloud.configdelivery.v1.ResourceBundleDeploymentInfoB\x03\xe0\x41\x03\x12R\n\x07initial\x18\x03 \x01(\x0b\x32<.google.cloud.configdelivery.v1.ResourceBundleDeploymentInfoB\x03\xe0\x41\x03\x12R\n\x07\x63urrent\x18\x04 \x01(\x0b\x32<.google.cloud.configdelivery.v1.ResourceBundleDeploymentInfoB\x03\xe0\x41\x03\x12\x45\n\x05state\x18\x05 \x01(\x0e\x32\x31.google.cloud.configdelivery.v1.ClusterInfo.StateB\x03\xe0\x41\x03\x12\x18\n\x08messages\x18\x06 \x03(\tB\x06\xe0\x41\x06\xe0\x41\x03\x12\x33\n\nstart_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\x9b\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07WAITING\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0b\n\x07STALLED\x10\x03\x12\r\n\tCOMPLETED\x10\x04\x12\x0b\n\x07\x41\x42ORTED\x10\x05\x12\r\n\tCANCELLED\x10\x06\x12\t\n\x05\x45RROR\x10\x07\x12\r\n\tUNCHANGED\x10\x08\x12\x0b\n\x07SKIPPED\x10\t\"\xa2\x03\n\x1cResourceBundleDeploymentInfo\x12>\n\x07release\x18\x01 \x01(\tB-\xe0\x41\x03\xfa\x41\'\n%configdelivery.googleapis.com/Release\x12\x14\n\x07version\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x07variant\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12_\n\nsync_state\x18\x04 \x01(\x0e\x32\x46.google.cloud.configdelivery.v1.ResourceBundleDeploymentInfo.SyncStateB\x03\xe0\x41\x03\x12\x18\n\x08messages\x18\x05 \x03(\tB\x06\xe0\x41\x03\xe0\x41\x06\"\x9a\x01\n\tSyncState\x12\x1a\n\x16SYNC_STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bRECONCILING\x10\x01\x12\x0b\n\x07STALLED\x10\x02\x12\n\n\x06SYNCED\x10\x03\x12\x0b\n\x07PENDING\x10\x04\x12\t\n\x05\x45RROR\x10\x05\x12\x14\n\x10\x44\x45LETION_PENDING\x10\x06\x12\x0c\n\x08\x44\x45LETING\x10\x07\x12\x0b\n\x07\x44\x45LETED\x10\x08\"\xc0\x02\n\x05\x46leet\x12\x44\n\x07project\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12J\n\x08selector\x18\x02 \x01(\x0b\x32\x33.google.cloud.configdelivery.v1.Fleet.LabelSelectorB\x03\xe0\x41\x01\x1a\xa4\x01\n\rLabelSelector\x12_\n\x0cmatch_labels\x18\x01 \x03(\x0b\x32\x44.google.cloud.configdelivery.v1.Fleet.LabelSelector.MatchLabelsEntryB\x03\xe0\x41\x01\x1a\x32\n\x10MatchLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x13\n\x11\x41llAtOnceStrategy\".\n\x0fRollingStrategy\x12\x1b\n\x0emax_concurrent\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01\"\xab\x01\n\x0fRolloutStrategy\x12H\n\x0b\x61ll_at_once\x18\x01 \x01(\x0b\x32\x31.google.cloud.configdelivery.v1.AllAtOnceStrategyH\x00\x12\x42\n\x07rolling\x18\x02 \x01(\x0b\x32/.google.cloud.configdelivery.v1.RollingStrategyH\x00\x42\n\n\x08strategy\"\xd3\x01\n\x13RolloutStrategyInfo\x12Z\n\x19\x61ll_at_once_strategy_info\x18\x01 \x01(\x0b\x32\x35.google.cloud.configdelivery.v1.AllAtOnceStrategyInfoH\x00\x12T\n\x15rolling_strategy_info\x18\x02 \x01(\x0b\x32\x33.google.cloud.configdelivery.v1.RollingStrategyInfoH\x00\x42\n\n\x08strategy\"[\n\x15\x41llAtOnceStrategyInfo\x12\x42\n\x08\x63lusters\x18\x01 \x03(\x0b\x32+.google.cloud.configdelivery.v1.ClusterInfoB\x03\xe0\x41\x06\"Y\n\x13RollingStrategyInfo\x12\x42\n\x08\x63lusters\x18\x01 \x03(\x0b\x32+.google.cloud.configdelivery.v1.ClusterInfoB\x03\xe0\x41\x06\"\xbb\x01\n\x18ListFleetPackagesRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\x12*configdelivery.googleapis.com/FleetPackage\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x94\x01\n\x19ListFleetPackagesResponse\x12\x44\n\x0e\x66leet_packages\x18\x01 \x03(\x0b\x32,.google.cloud.configdelivery.v1.FleetPackage\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"Z\n\x16GetFleetPackageRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*configdelivery.googleapis.com/FleetPackage\"\xe9\x01\n\x19\x43reateFleetPackageRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\x12*configdelivery.googleapis.com/FleetPackage\x12\x1d\n\x10\x66leet_package_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12H\n\rfleet_package\x18\x03 \x01(\x0b\x32,.google.cloud.configdelivery.v1.FleetPackageB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xbc\x01\n\x19UpdateFleetPackageRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12H\n\rfleet_package\x18\x02 \x01(\x0b\x32,.google.cloud.configdelivery.v1.FleetPackageB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xae\x01\n\x19\x44\x65leteFleetPackageRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*configdelivery.googleapis.com/FleetPackage\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\"\xba\x05\n\x07Release\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12H\n\x06labels\x18\x04 \x03(\x0b\x32\x33.google.cloud.configdelivery.v1.Release.LabelsEntryB\x03\xe0\x41\x01\x12I\n\tlifecycle\x18\x05 \x01(\x0e\x32\x31.google.cloud.configdelivery.v1.Release.LifecycleB\x03\xe0\x41\x01\x12\x14\n\x07version\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x35\n\x0cpublish_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12>\n\x04info\x18\t \x01(\x0b\x32+.google.cloud.configdelivery.v1.ReleaseInfoB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"@\n\tLifecycle\x12\x19\n\x15LIFECYCLE_UNSPECIFIED\x10\x00\x12\t\n\x05\x44RAFT\x10\x01\x12\r\n\tPUBLISHED\x10\x02:\x9c\x01\xea\x41\x98\x01\n%configdelivery.googleapis.com/Release\x12\\projects/{project}/locations/{location}/resourceBundles/{resource_bundle}/releases/{release}*\x08releases2\x07release\"\xd1\x03\n\x07Variant\x12H\n\x06labels\x18\x01 \x03(\x0b\x32\x33.google.cloud.configdelivery.v1.Variant.LabelsEntryB\x03\xe0\x41\x01\x12\x1c\n\tresources\x18\x02 \x03(\tB\t\xe0\x41\x02\xe0\x41\x06\xe0\x41\x04\x12\x11\n\x04name\x18\x03 \x01(\tB\x03\xe0\x41\x08\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\xaf\x01\xea\x41\xab\x01\n%configdelivery.googleapis.com/Variant\x12oprojects/{project}/locations/{location}/resourceBundles/{resource_bundle}/releases/{release}/variants/{variant}*\x08variants2\x07variant\"\xb1\x01\n\x13ListVariantsRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%configdelivery.googleapis.com/Variant\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x14ListVariantsResponse\x12\x39\n\x08variants\x18\x01 \x03(\x0b\x32\'.google.cloud.configdelivery.v1.Variant\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"P\n\x11GetVariantRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Variant\"\xce\x01\n\x14\x43reateVariantRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%configdelivery.googleapis.com/Variant\x12\x17\n\nvariant_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12=\n\x07variant\x18\x03 \x01(\x0b\x32\'.google.cloud.configdelivery.v1.VariantB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xac\x01\n\x14UpdateVariantRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12=\n\x07variant\x18\x02 \x01(\x0b\x32\'.google.cloud.configdelivery.v1.VariantB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"t\n\x14\x44\x65leteVariantRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Variant\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xd4\x01\n\x0bReleaseInfo\x12\x1b\n\x0eoci_image_path\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12k\n\x17variant_oci_image_paths\x18\x02 \x03(\x0b\x32\x45.google.cloud.configdelivery.v1.ReleaseInfo.VariantOciImagePathsEntryB\x03\xe0\x41\x01\x1a;\n\x19VariantOciImagePathsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb1\x01\n\x13ListReleasesRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%configdelivery.googleapis.com/Release\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x14ListReleasesResponse\x12\x39\n\x08releases\x18\x01 \x03(\x0b\x32\'.google.cloud.configdelivery.v1.Release\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"P\n\x11GetReleaseRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Release\"\xce\x01\n\x14\x43reateReleaseRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%configdelivery.googleapis.com/Release\x12\x17\n\nrelease_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12=\n\x07release\x18\x03 \x01(\x0b\x32\'.google.cloud.configdelivery.v1.ReleaseB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x04 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\xac\x01\n\x14UpdateReleaseRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12=\n\x07release\x18\x02 \x01(\x0b\x32\'.google.cloud.configdelivery.v1.ReleaseB\x03\xe0\x41\x02\x12\x1f\n\nrequest_id\x18\x03 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\"\x88\x01\n\x14\x44\x65leteReleaseRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Release\x12\x1f\n\nrequest_id\x18\x02 \x01(\tB\x0b\xe0\x41\x01\xe2\x8c\xcf\xd7\x08\x02\x08\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"\xb1\x01\n\x13ListRolloutsRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%configdelivery.googleapis.com/Rollout\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x14ListRolloutsResponse\x12\x39\n\x08rollouts\x18\x01 \x03(\x0b\x32\'.google.cloud.configdelivery.v1.Rollout\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x18\n\x0bunreachable\x18\x03 \x03(\tB\x03\xe0\x41\x06\"P\n\x11GetRolloutRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\"\xb2\x03\n\x0bRolloutInfo\x12\x45\n\x05state\x18\x01 \x01(\x0e\x32\x31.google.cloud.configdelivery.v1.RolloutInfo.StateB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x14\n\x07message\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12W\n\x15rollout_strategy_info\x18\x07 \x01(\x0b\x32\x33.google.cloud.configdelivery.v1.RolloutStrategyInfoB\x03\xe0\x41\x03\"\x84\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\r\n\tCOMPLETED\x10\x01\x12\r\n\tSUSPENDED\x10\x02\x12\x0b\n\x07\x41\x42ORTED\x10\x03\x12\x0f\n\x0bIN_PROGRESS\x10\x05\x12\x0b\n\x07STALLED\x10\x06\x12\r\n\tCANCELLED\x10\x07\x12\x0c\n\x08\x41\x42ORTING\x10\x08\"\xc6\x04\n\x07Rollout\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12;\n\x07release\x18\x02 \x01(\tB*\xfa\x41\'\n%configdelivery.googleapis.com/Release\x12I\n\x10rollout_strategy\x18\x04 \x01(\x0b\x32/.google.cloud.configdelivery.v1.RolloutStrategy\x12\x39\n\x04info\x18\x05 \x01(\x0b\x32+.google.cloud.configdelivery.v1.RolloutInfo\x12^\n\x1b\x64\x65letion_propagation_policy\x18\x07 \x01(\x0e\x32\x39.google.cloud.configdelivery.v1.DeletionPropagationPolicy\x12\x34\n\x0b\x63reate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\x98\x01\xea\x41\x94\x01\n%configdelivery.googleapis.com/Rollout\x12Xprojects/{project}/locations/{location}/fleetPackages/{fleet_package}/rollouts/{rollout}*\x08rollouts2\x07rollout\"i\n\x15SuspendRolloutRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\x12\x13\n\x06reason\x18\x02 \x01(\tB\x03\xe0\x41\x01\"h\n\x14ResumeRolloutRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\x12\x13\n\x06reason\x18\x02 \x01(\tB\x03\xe0\x41\x01\"g\n\x13\x41\x62ortRolloutRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%configdelivery.googleapis.com/Rollout\x12\x13\n\x06reason\x18\x02 \x01(\tB\x03\xe0\x41\x01*d\n\x19\x44\x65letionPropagationPolicy\x12+\n\'DELETION_PROPAGATION_POLICY_UNSPECIFIED\x10\x00\x12\x0e\n\nFOREGROUND\x10\x01\x12\n\n\x06ORPHAN\x10\x02\x32\x89-\n\x0e\x43onfigDelivery\x12\xd4\x01\n\x13ListResourceBundles\x12:.google.cloud.configdelivery.v1.ListResourceBundlesRequest\x1a;.google.cloud.configdelivery.v1.ListResourceBundlesResponse\"D\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{parent=projects/*/locations/*}/resourceBundles\x12\xc1\x01\n\x11GetResourceBundle\x12\x38.google.cloud.configdelivery.v1.GetResourceBundleRequest\x1a..google.cloud.configdelivery.v1.ResourceBundle\"B\xda\x41\x04name\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{name=projects/*/locations/*/resourceBundles/*}\x12\x93\x02\n\x14\x43reateResourceBundle\x12;.google.cloud.configdelivery.v1.CreateResourceBundleRequest\x1a\x1d.google.longrunning.Operation\"\x9e\x01\xca\x41#\n\x0eResourceBundle\x12\x11OperationMetadata\xda\x41)parent,resource_bundle,resource_bundle_id\x82\xd3\xe4\x93\x02\x46\"3/v1/{parent=projects/*/locations/*}/resourceBundles:\x0fresource_bundle\x12\x95\x02\n\x14UpdateResourceBundle\x12;.google.cloud.configdelivery.v1.UpdateResourceBundleRequest\x1a\x1d.google.longrunning.Operation\"\xa0\x01\xca\x41#\n\x0eResourceBundle\x12\x11OperationMetadata\xda\x41\x1bresource_bundle,update_mask\x82\xd3\xe4\x93\x02V2C/v1/{resource_bundle.name=projects/*/locations/*/resourceBundles/*}:\x0fresource_bundle\x12\xe3\x01\n\x14\x44\x65leteResourceBundle\x12;.google.cloud.configdelivery.v1.DeleteResourceBundleRequest\x1a\x1d.google.longrunning.Operation\"o\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x35*3/v1/{name=projects/*/locations/*/resourceBundles/*}\x12\xcc\x01\n\x11ListFleetPackages\x12\x38.google.cloud.configdelivery.v1.ListFleetPackagesRequest\x1a\x39.google.cloud.configdelivery.v1.ListFleetPackagesResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{parent=projects/*/locations/*}/fleetPackages\x12\xb9\x01\n\x0fGetFleetPackage\x12\x36.google.cloud.configdelivery.v1.GetFleetPackageRequest\x1a,.google.cloud.configdelivery.v1.FleetPackage\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v1/{name=projects/*/locations/*/fleetPackages/*}\x12\x85\x02\n\x12\x43reateFleetPackage\x12\x39.google.cloud.configdelivery.v1.CreateFleetPackageRequest\x1a\x1d.google.longrunning.Operation\"\x94\x01\xca\x41!\n\x0c\x46leetPackage\x12\x11OperationMetadata\xda\x41%parent,fleet_package,fleet_package_id\x82\xd3\xe4\x93\x02\x42\"1/v1/{parent=projects/*/locations/*}/fleetPackages:\rfleet_package\x12\x87\x02\n\x12UpdateFleetPackage\x12\x39.google.cloud.configdelivery.v1.UpdateFleetPackageRequest\x1a\x1d.google.longrunning.Operation\"\x96\x01\xca\x41!\n\x0c\x46leetPackage\x12\x11OperationMetadata\xda\x41\x19\x66leet_package,update_mask\x82\xd3\xe4\x93\x02P2?/v1/{fleet_package.name=projects/*/locations/*/fleetPackages/*}:\rfleet_package\x12\xdd\x01\n\x12\x44\x65leteFleetPackage\x12\x39.google.cloud.configdelivery.v1.DeleteFleetPackageRequest\x1a\x1d.google.longrunning.Operation\"m\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33*1/v1/{name=projects/*/locations/*/fleetPackages/*}\x12\xca\x01\n\x0cListReleases\x12\x33.google.cloud.configdelivery.v1.ListReleasesRequest\x1a\x34.google.cloud.configdelivery.v1.ListReleasesResponse\"O\xda\x41\x06parent\x82\xd3\xe4\x93\x02@\x12>/v1/{parent=projects/*/locations/*/resourceBundles/*}/releases\x12\xb7\x01\n\nGetRelease\x12\x31.google.cloud.configdelivery.v1.GetReleaseRequest\x1a\'.google.cloud.configdelivery.v1.Release\"M\xda\x41\x04name\x82\xd3\xe4\x93\x02@\x12>/v1/{name=projects/*/locations/*/resourceBundles/*/releases/*}\x12\xf1\x01\n\rCreateRelease\x12\x34.google.cloud.configdelivery.v1.CreateReleaseRequest\x1a\x1d.google.longrunning.Operation\"\x8a\x01\xca\x41\x1c\n\x07Release\x12\x11OperationMetadata\xda\x41\x19parent,release,release_id\x82\xd3\xe4\x93\x02I\">/v1/{parent=projects/*/locations/*/resourceBundles/*}/releases:\x07release\x12\xf3\x01\n\rUpdateRelease\x12\x34.google.cloud.configdelivery.v1.UpdateReleaseRequest\x1a\x1d.google.longrunning.Operation\"\x8c\x01\xca\x41\x1c\n\x07Release\x12\x11OperationMetadata\xda\x41\x13release,update_mask\x82\xd3\xe4\x93\x02Q2F/v1/{release.name=projects/*/locations/*/resourceBundles/*/releases/*}:\x07release\x12\xe0\x01\n\rDeleteRelease\x12\x34.google.cloud.configdelivery.v1.DeleteReleaseRequest\x1a\x1d.google.longrunning.Operation\"z\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02@*>/v1/{name=projects/*/locations/*/resourceBundles/*/releases/*}\x12\xd5\x01\n\x0cListVariants\x12\x33.google.cloud.configdelivery.v1.ListVariantsRequest\x1a\x34.google.cloud.configdelivery.v1.ListVariantsResponse\"Z\xda\x41\x06parent\x82\xd3\xe4\x93\x02K\x12I/v1/{parent=projects/*/locations/*/resourceBundles/*/releases/*}/variants\x12\xc2\x01\n\nGetVariant\x12\x31.google.cloud.configdelivery.v1.GetVariantRequest\x1a\'.google.cloud.configdelivery.v1.Variant\"X\xda\x41\x04name\x82\xd3\xe4\x93\x02K\x12I/v1/{name=projects/*/locations/*/resourceBundles/*/releases/*/variants/*}\x12\xfc\x01\n\rCreateVariant\x12\x34.google.cloud.configdelivery.v1.CreateVariantRequest\x1a\x1d.google.longrunning.Operation\"\x95\x01\xca\x41\x1c\n\x07Variant\x12\x11OperationMetadata\xda\x41\x19parent,variant,variant_id\x82\xd3\xe4\x93\x02T\"I/v1/{parent=projects/*/locations/*/resourceBundles/*/releases/*}/variants:\x07variant\x12\xfe\x01\n\rUpdateVariant\x12\x34.google.cloud.configdelivery.v1.UpdateVariantRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41\x1c\n\x07Variant\x12\x11OperationMetadata\xda\x41\x13variant,update_mask\x82\xd3\xe4\x93\x02\\2Q/v1/{variant.name=projects/*/locations/*/resourceBundles/*/releases/*/variants/*}:\x07variant\x12\xec\x01\n\rDeleteVariant\x12\x34.google.cloud.configdelivery.v1.DeleteVariantRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02K*I/v1/{name=projects/*/locations/*/resourceBundles/*/releases/*/variants/*}\x12\xc8\x01\n\x0cListRollouts\x12\x33.google.cloud.configdelivery.v1.ListRolloutsRequest\x1a\x34.google.cloud.configdelivery.v1.ListRolloutsResponse\"M\xda\x41\x06parent\x82\xd3\xe4\x93\x02>\x12</v1/{parent=projects/*/locations/*/fleetPackages/*}/rollouts\x12\xb5\x01\n\nGetRollout\x12\x31.google.cloud.configdelivery.v1.GetRolloutRequest\x1a\'.google.cloud.configdelivery.v1.Rollout\"K\xda\x41\x04name\x82\xd3\xe4\x93\x02>\x12</v1/{name=projects/*/locations/*/fleetPackages/*/rollouts/*}\x12\xdd\x01\n\x0eSuspendRollout\x12\x35.google.cloud.configdelivery.v1.SuspendRolloutRequest\x1a\x1d.google.longrunning.Operation\"u\xca\x41\x1c\n\x07Rollout\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02I\"D/v1/{name=projects/*/locations/*/fleetPackages/*/rollouts/*}:suspend:\x01*\x12\xda\x01\n\rResumeRollout\x12\x34.google.cloud.configdelivery.v1.ResumeRolloutRequest\x1a\x1d.google.longrunning.Operation\"t\xca\x41\x1c\n\x07Rollout\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02H\"C/v1/{name=projects/*/locations/*/fleetPackages/*/rollouts/*}:resume:\x01*\x12\xd7\x01\n\x0c\x41\x62ortRollout\x12\x33.google.cloud.configdelivery.v1.AbortRolloutRequest\x1a\x1d.google.longrunning.Operation\"s\xca\x41\x1c\n\x07Rollout\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02G\"B/v1/{name=projects/*/locations/*/fleetPackages/*/rollouts/*}:abort:\x01*\x1aQ\xca\x41\x1d\x63onfigdelivery.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xda\x03\n\"com.google.cloud.configdelivery.v1B\x13\x43onfigDeliveryProtoP\x01ZJcloud.google.com/go/configdelivery/apiv1/configdeliverypb;configdeliverypb\xaa\x02\x1eGoogle.Cloud.ConfigDelivery.V1\xca\x02\x1eGoogle\\Cloud\\ConfigDelivery\\V1\xea\x02!Google::Cloud::ConfigDelivery::V1\xea\x41\x82\x01\n$cloudbuild.googleapis.com/Repository\x12Zprojects/{project}/locations/{location}/connections/{connection}/repositories/{repository}\xea\x41\x64\n gkehub.googleapis.com/Membership\x12@projects/{project}/locations/{location}/memberships/{membership}b\x06proto3"
|
19
|
+
|
20
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
21
|
+
|
22
|
+
begin
|
23
|
+
pool.add_serialized_file(descriptor_data)
|
24
|
+
rescue TypeError
|
25
|
+
# Compatibility code: will be removed in the next major version.
|
26
|
+
require 'google/protobuf/descriptor_pb'
|
27
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
28
|
+
parsed.clear_dependency
|
29
|
+
serialized = parsed.class.encode(parsed)
|
30
|
+
file = pool.add_serialized_file(serialized)
|
31
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
32
|
+
imports = [
|
33
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
34
|
+
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
35
|
+
]
|
36
|
+
imports.each do |type_name, expected_filename|
|
37
|
+
import_file = pool.lookup(type_name).file_descriptor
|
38
|
+
if import_file.name != expected_filename
|
39
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
43
|
+
warn "This will become an error in the next major version."
|
44
|
+
end
|
45
|
+
|
46
|
+
module Google
|
47
|
+
module Cloud
|
48
|
+
module ConfigDelivery
|
49
|
+
module V1
|
50
|
+
ResourceBundle = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ResourceBundle").msgclass
|
51
|
+
ListResourceBundlesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListResourceBundlesRequest").msgclass
|
52
|
+
ListResourceBundlesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListResourceBundlesResponse").msgclass
|
53
|
+
GetResourceBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.GetResourceBundleRequest").msgclass
|
54
|
+
CreateResourceBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.CreateResourceBundleRequest").msgclass
|
55
|
+
UpdateResourceBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.UpdateResourceBundleRequest").msgclass
|
56
|
+
DeleteResourceBundleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.DeleteResourceBundleRequest").msgclass
|
57
|
+
FleetPackage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage").msgclass
|
58
|
+
FleetPackage::ResourceBundleSelector = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.ResourceBundleSelector").msgclass
|
59
|
+
FleetPackage::ResourceBundleTag = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.ResourceBundleTag").msgclass
|
60
|
+
FleetPackage::CloudBuildRepository = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.CloudBuildRepository").msgclass
|
61
|
+
FleetPackage::Target = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.Target").msgclass
|
62
|
+
FleetPackage::VariantSelector = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.VariantSelector").msgclass
|
63
|
+
FleetPackage::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackage.State").enummodule
|
64
|
+
FleetPackageInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackageInfo").msgclass
|
65
|
+
FleetPackageInfo::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackageInfo.State").enummodule
|
66
|
+
FleetPackageError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.FleetPackageError").msgclass
|
67
|
+
ClusterInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ClusterInfo").msgclass
|
68
|
+
ClusterInfo::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ClusterInfo.State").enummodule
|
69
|
+
ResourceBundleDeploymentInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ResourceBundleDeploymentInfo").msgclass
|
70
|
+
ResourceBundleDeploymentInfo::SyncState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ResourceBundleDeploymentInfo.SyncState").enummodule
|
71
|
+
Fleet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Fleet").msgclass
|
72
|
+
Fleet::LabelSelector = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Fleet.LabelSelector").msgclass
|
73
|
+
AllAtOnceStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.AllAtOnceStrategy").msgclass
|
74
|
+
RollingStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RollingStrategy").msgclass
|
75
|
+
RolloutStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RolloutStrategy").msgclass
|
76
|
+
RolloutStrategyInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RolloutStrategyInfo").msgclass
|
77
|
+
AllAtOnceStrategyInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.AllAtOnceStrategyInfo").msgclass
|
78
|
+
RollingStrategyInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RollingStrategyInfo").msgclass
|
79
|
+
ListFleetPackagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListFleetPackagesRequest").msgclass
|
80
|
+
ListFleetPackagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListFleetPackagesResponse").msgclass
|
81
|
+
GetFleetPackageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.GetFleetPackageRequest").msgclass
|
82
|
+
CreateFleetPackageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.CreateFleetPackageRequest").msgclass
|
83
|
+
UpdateFleetPackageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.UpdateFleetPackageRequest").msgclass
|
84
|
+
DeleteFleetPackageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.DeleteFleetPackageRequest").msgclass
|
85
|
+
OperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.OperationMetadata").msgclass
|
86
|
+
Release = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Release").msgclass
|
87
|
+
Release::Lifecycle = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Release.Lifecycle").enummodule
|
88
|
+
Variant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Variant").msgclass
|
89
|
+
ListVariantsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListVariantsRequest").msgclass
|
90
|
+
ListVariantsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListVariantsResponse").msgclass
|
91
|
+
GetVariantRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.GetVariantRequest").msgclass
|
92
|
+
CreateVariantRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.CreateVariantRequest").msgclass
|
93
|
+
UpdateVariantRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.UpdateVariantRequest").msgclass
|
94
|
+
DeleteVariantRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.DeleteVariantRequest").msgclass
|
95
|
+
ReleaseInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ReleaseInfo").msgclass
|
96
|
+
ListReleasesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListReleasesRequest").msgclass
|
97
|
+
ListReleasesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListReleasesResponse").msgclass
|
98
|
+
GetReleaseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.GetReleaseRequest").msgclass
|
99
|
+
CreateReleaseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.CreateReleaseRequest").msgclass
|
100
|
+
UpdateReleaseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.UpdateReleaseRequest").msgclass
|
101
|
+
DeleteReleaseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.DeleteReleaseRequest").msgclass
|
102
|
+
ListRolloutsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListRolloutsRequest").msgclass
|
103
|
+
ListRolloutsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ListRolloutsResponse").msgclass
|
104
|
+
GetRolloutRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.GetRolloutRequest").msgclass
|
105
|
+
RolloutInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RolloutInfo").msgclass
|
106
|
+
RolloutInfo::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.RolloutInfo.State").enummodule
|
107
|
+
Rollout = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.Rollout").msgclass
|
108
|
+
SuspendRolloutRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.SuspendRolloutRequest").msgclass
|
109
|
+
ResumeRolloutRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.ResumeRolloutRequest").msgclass
|
110
|
+
AbortRolloutRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.AbortRolloutRequest").msgclass
|
111
|
+
DeletionPropagationPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.configdelivery.v1.DeletionPropagationPolicy").enummodule
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/cloud/configdelivery/v1/config_delivery.proto for package 'Google.Cloud.ConfigDelivery.V1'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2025 Google LLC
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/cloud/configdelivery/v1/config_delivery_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module ConfigDelivery
|
25
|
+
module V1
|
26
|
+
module ConfigDelivery
|
27
|
+
# ConfigDelivery service manages the deployment of kubernetes configuration to
|
28
|
+
# a fleet of kubernetes clusters.
|
29
|
+
class Service
|
30
|
+
|
31
|
+
include ::GRPC::GenericService
|
32
|
+
|
33
|
+
self.marshal_class_method = :encode
|
34
|
+
self.unmarshal_class_method = :decode
|
35
|
+
self.service_name = 'google.cloud.configdelivery.v1.ConfigDelivery'
|
36
|
+
|
37
|
+
# Lists ResourceBundles in a given project and location.
|
38
|
+
rpc :ListResourceBundles, ::Google::Cloud::ConfigDelivery::V1::ListResourceBundlesRequest, ::Google::Cloud::ConfigDelivery::V1::ListResourceBundlesResponse
|
39
|
+
# Gets details of a single ResourceBundle.
|
40
|
+
rpc :GetResourceBundle, ::Google::Cloud::ConfigDelivery::V1::GetResourceBundleRequest, ::Google::Cloud::ConfigDelivery::V1::ResourceBundle
|
41
|
+
# Creates a new ResourceBundle in a given project and location.
|
42
|
+
rpc :CreateResourceBundle, ::Google::Cloud::ConfigDelivery::V1::CreateResourceBundleRequest, ::Google::Longrunning::Operation
|
43
|
+
# Updates the parameters of a single ResourceBundle.
|
44
|
+
rpc :UpdateResourceBundle, ::Google::Cloud::ConfigDelivery::V1::UpdateResourceBundleRequest, ::Google::Longrunning::Operation
|
45
|
+
# Deletes a single ResourceBundle.
|
46
|
+
rpc :DeleteResourceBundle, ::Google::Cloud::ConfigDelivery::V1::DeleteResourceBundleRequest, ::Google::Longrunning::Operation
|
47
|
+
# Lists FleetPackages in a given project and location.
|
48
|
+
rpc :ListFleetPackages, ::Google::Cloud::ConfigDelivery::V1::ListFleetPackagesRequest, ::Google::Cloud::ConfigDelivery::V1::ListFleetPackagesResponse
|
49
|
+
# Gets details of a single FleetPackage.
|
50
|
+
rpc :GetFleetPackage, ::Google::Cloud::ConfigDelivery::V1::GetFleetPackageRequest, ::Google::Cloud::ConfigDelivery::V1::FleetPackage
|
51
|
+
# Creates a new FleetPackage in a given project and location.
|
52
|
+
rpc :CreateFleetPackage, ::Google::Cloud::ConfigDelivery::V1::CreateFleetPackageRequest, ::Google::Longrunning::Operation
|
53
|
+
# Updates the parameters of a single FleetPackage.
|
54
|
+
rpc :UpdateFleetPackage, ::Google::Cloud::ConfigDelivery::V1::UpdateFleetPackageRequest, ::Google::Longrunning::Operation
|
55
|
+
# Deletes a single FleetPackage.
|
56
|
+
rpc :DeleteFleetPackage, ::Google::Cloud::ConfigDelivery::V1::DeleteFleetPackageRequest, ::Google::Longrunning::Operation
|
57
|
+
# Lists Releases in a given project and location.
|
58
|
+
rpc :ListReleases, ::Google::Cloud::ConfigDelivery::V1::ListReleasesRequest, ::Google::Cloud::ConfigDelivery::V1::ListReleasesResponse
|
59
|
+
# Gets details of a single Release.
|
60
|
+
rpc :GetRelease, ::Google::Cloud::ConfigDelivery::V1::GetReleaseRequest, ::Google::Cloud::ConfigDelivery::V1::Release
|
61
|
+
# Creates a new Release in a given project, location and resource bundle.
|
62
|
+
rpc :CreateRelease, ::Google::Cloud::ConfigDelivery::V1::CreateReleaseRequest, ::Google::Longrunning::Operation
|
63
|
+
# Updates the parameters of a single Release.
|
64
|
+
rpc :UpdateRelease, ::Google::Cloud::ConfigDelivery::V1::UpdateReleaseRequest, ::Google::Longrunning::Operation
|
65
|
+
# Deletes a single Release.
|
66
|
+
rpc :DeleteRelease, ::Google::Cloud::ConfigDelivery::V1::DeleteReleaseRequest, ::Google::Longrunning::Operation
|
67
|
+
# Lists Variants in a given project and location.
|
68
|
+
rpc :ListVariants, ::Google::Cloud::ConfigDelivery::V1::ListVariantsRequest, ::Google::Cloud::ConfigDelivery::V1::ListVariantsResponse
|
69
|
+
# Gets details of a single Variant.
|
70
|
+
rpc :GetVariant, ::Google::Cloud::ConfigDelivery::V1::GetVariantRequest, ::Google::Cloud::ConfigDelivery::V1::Variant
|
71
|
+
# Creates a new Variant in a given project, location, resource bundle, and
|
72
|
+
# release.
|
73
|
+
rpc :CreateVariant, ::Google::Cloud::ConfigDelivery::V1::CreateVariantRequest, ::Google::Longrunning::Operation
|
74
|
+
# Updates the parameters of a single Variant.
|
75
|
+
rpc :UpdateVariant, ::Google::Cloud::ConfigDelivery::V1::UpdateVariantRequest, ::Google::Longrunning::Operation
|
76
|
+
# Deletes a single Variant.
|
77
|
+
rpc :DeleteVariant, ::Google::Cloud::ConfigDelivery::V1::DeleteVariantRequest, ::Google::Longrunning::Operation
|
78
|
+
# Lists Rollouts in a given project, location, and Fleet Package.
|
79
|
+
rpc :ListRollouts, ::Google::Cloud::ConfigDelivery::V1::ListRolloutsRequest, ::Google::Cloud::ConfigDelivery::V1::ListRolloutsResponse
|
80
|
+
# Gets details of a single Rollout.
|
81
|
+
rpc :GetRollout, ::Google::Cloud::ConfigDelivery::V1::GetRolloutRequest, ::Google::Cloud::ConfigDelivery::V1::Rollout
|
82
|
+
# Suspend a Rollout.
|
83
|
+
rpc :SuspendRollout, ::Google::Cloud::ConfigDelivery::V1::SuspendRolloutRequest, ::Google::Longrunning::Operation
|
84
|
+
# Resume a Rollout.
|
85
|
+
rpc :ResumeRollout, ::Google::Cloud::ConfigDelivery::V1::ResumeRolloutRequest, ::Google::Longrunning::Operation
|
86
|
+
# Abort a Rollout.
|
87
|
+
rpc :AbortRollout, ::Google::Cloud::ConfigDelivery::V1::AbortRolloutRequest, ::Google::Longrunning::Operation
|
88
|
+
end
|
89
|
+
|
90
|
+
Stub = Service.rpc_stub_class
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
# This gem does not autoload during Bundler.require. To load this gem,
|
20
|
+
# issue explicit require statements for the packages desired, e.g.:
|
21
|
+
# require "google/cloud/config_delivery/v1"
|