google-apis-apihub_v1 0.8.0 → 0.10.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: 45244899890b07eaae23bf1daff080a973a805c850e30edc44b71a9eb1632d94
4
- data.tar.gz: 51b165f5d05718508da4032c9a176cb9a6f6d5a9046457c1245a3ea5e50d1046
3
+ metadata.gz: 766998d6603cd792e8f94af4033ac682ad1ac3537bbb163b7ca8e5f1411eaedd
4
+ data.tar.gz: adceff848530768cc68f460aca13f0bdb4a2220c8e12af7335d046c236a6498f
5
5
  SHA512:
6
- metadata.gz: 503b16d8f4613accfe4173646f8861451aec8bae3147adaef3fc38d99a8d6e7988a0d27af353e1c2a16c55baaf0fdb0605fd37b8e2fb4c4f34bcce42b3381ae3
7
- data.tar.gz: a3ebae249a37ee35c5d92417047ec192602dfd7c247ba242680be96fea1a5a1fc5ce01a1711edc2c53d6f97a58fa637542c26637ba3a5386fa9007ab9d7b4b6f
6
+ metadata.gz: 0c4f9cc68f446f8dce57853f38bd4ee2c41be8595785797cda3101234c12940b1c478a1ca48dd5489f41f0ba31abd88b893f3f9943202e34557f06363b99479e
7
+ data.tar.gz: 7d0985ae956be236569e08f6cf37a284d8482af8586b108e64821012c3671da11cc52ab803a79305e34798917de72667bb974c16914c18ffa95840c2e8738923
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apihub_v1
2
2
 
3
+ ### v0.10.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251110
6
+
7
+ ### v0.9.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251025
10
+
3
11
  ### v0.8.0 (2025-09-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20250912
@@ -101,6 +101,117 @@ module Google
101
101
  end
102
102
  end
103
103
 
104
+ # Addon resource.
105
+ class GoogleCloudApihubV1Addon
106
+ include Google::Apis::Core::Hashable
107
+
108
+ # Configuration for the addon.
109
+ # Corresponds to the JSON property `config`
110
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig]
111
+ attr_accessor :config
112
+
113
+ # Output only. The time at which the addon was created.
114
+ # Corresponds to the JSON property `createTime`
115
+ # @return [String]
116
+ attr_accessor :create_time
117
+
118
+ # Required. The data source on which the addon operates. This determines which
119
+ # field in the `config` oneof is used.
120
+ # Corresponds to the JSON property `dataSource`
121
+ # @return [String]
122
+ attr_accessor :data_source
123
+
124
+ # Optional. The description of the addon.
125
+ # Corresponds to the JSON property `description`
126
+ # @return [String]
127
+ attr_accessor :description
128
+
129
+ # Required. The display name of the addon.
130
+ # Corresponds to the JSON property `displayName`
131
+ # @return [String]
132
+ attr_accessor :display_name
133
+
134
+ # Identifier. The name of the addon to enable. Format: `projects/`project`/
135
+ # locations/`location`/addons/`addon``.
136
+ # Corresponds to the JSON property `name`
137
+ # @return [String]
138
+ attr_accessor :name
139
+
140
+ # Output only. The state of the addon.
141
+ # Corresponds to the JSON property `state`
142
+ # @return [String]
143
+ attr_accessor :state
144
+
145
+ # Output only. The time at which the addon was last updated.
146
+ # Corresponds to the JSON property `updateTime`
147
+ # @return [String]
148
+ attr_accessor :update_time
149
+
150
+ def initialize(**args)
151
+ update!(**args)
152
+ end
153
+
154
+ # Update properties of this object
155
+ def update!(**args)
156
+ @config = args[:config] if args.key?(:config)
157
+ @create_time = args[:create_time] if args.key?(:create_time)
158
+ @data_source = args[:data_source] if args.key?(:data_source)
159
+ @description = args[:description] if args.key?(:description)
160
+ @display_name = args[:display_name] if args.key?(:display_name)
161
+ @name = args[:name] if args.key?(:name)
162
+ @state = args[:state] if args.key?(:state)
163
+ @update_time = args[:update_time] if args.key?(:update_time)
164
+ end
165
+ end
166
+
167
+ # Configuration for the addon.
168
+ class GoogleCloudApihubV1AddonConfig
169
+ include Google::Apis::Core::Hashable
170
+
171
+ # Configuration for addons which act on all data in the API hub. This is used to
172
+ # specify if the addon is enabled for all data in the API hub.
173
+ # Corresponds to the JSON property `allDataAddonConfig`
174
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1AllDataAddonConfig]
175
+ attr_accessor :all_data_addon_config
176
+
177
+ # Configuration for gateway plugin addons. This is used to specify the list of
178
+ # gateway plugin configs for which the addon is enabled.
179
+ # Corresponds to the JSON property `gatewayPluginAddonConfig`
180
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginAddonConfig]
181
+ attr_accessor :gateway_plugin_addon_config
182
+
183
+ def initialize(**args)
184
+ update!(**args)
185
+ end
186
+
187
+ # Update properties of this object
188
+ def update!(**args)
189
+ @all_data_addon_config = args[:all_data_addon_config] if args.key?(:all_data_addon_config)
190
+ @gateway_plugin_addon_config = args[:gateway_plugin_addon_config] if args.key?(:gateway_plugin_addon_config)
191
+ end
192
+ end
193
+
194
+ # Configuration for addons which act on all data in the API hub. This is used to
195
+ # specify if the addon is enabled for all data in the API hub.
196
+ class GoogleCloudApihubV1AllDataAddonConfig
197
+ include Google::Apis::Core::Hashable
198
+
199
+ # Required. If true, the addon is enabled for all data in the API hub.
200
+ # Corresponds to the JSON property `enabled`
201
+ # @return [Boolean]
202
+ attr_accessor :enabled
203
+ alias_method :enabled?, :enabled
204
+
205
+ def initialize(**args)
206
+ update!(**args)
207
+ end
208
+
209
+ # Update properties of this object
210
+ def update!(**args)
211
+ @enabled = args[:enabled] if args.key?(:enabled)
212
+ end
213
+ end
214
+
104
215
  # The value that can be assigned to the attribute when the data type is enum.
105
216
  class GoogleCloudApihubV1AllowedValue
106
217
  include Google::Apis::Core::Hashable
@@ -203,7 +314,9 @@ module Google
203
314
  # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1Documentation]
204
315
  attr_accessor :documentation
205
316
 
206
- # Optional. Fingerprint of the API resource.
317
+ # Optional. Fingerprint of the API resource. This must be unique for each API
318
+ # resource. It can neither be unset nor be updated to an existing fingerprint of
319
+ # another API resource.
207
320
  # Corresponds to the JSON property `fingerprint`
208
321
  # @return [String]
209
322
  attr_accessor :fingerprint
@@ -563,6 +676,72 @@ module Google
563
676
  end
564
677
  end
565
678
 
679
+ # Configuration for Apigee Edge gateways. Applicability of a filter is
680
+ # determined by the filter being provided. If none of the filters are provided
681
+ # the addon will be enabled for all data brought in by the gateway plugin
682
+ # instance.
683
+ class GoogleCloudApihubV1ApigeeEdgeConfig
684
+ include Google::Apis::Core::Hashable
685
+
686
+ # Filter for environments.
687
+ # Corresponds to the JSON property `environmentFilter`
688
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter]
689
+ attr_accessor :environment_filter
690
+
691
+ def initialize(**args)
692
+ update!(**args)
693
+ end
694
+
695
+ # Update properties of this object
696
+ def update!(**args)
697
+ @environment_filter = args[:environment_filter] if args.key?(:environment_filter)
698
+ end
699
+ end
700
+
701
+ # Configuration for Apigee OPDK gateways. Applicability of a filter is
702
+ # determined by the filter being provided. If none of the filters are provided
703
+ # the addon will be enabled for all data brought in by the gateway plugin
704
+ # instance.
705
+ class GoogleCloudApihubV1ApigeeOpdkConfig
706
+ include Google::Apis::Core::Hashable
707
+
708
+ # Filter for environments.
709
+ # Corresponds to the JSON property `environmentFilter`
710
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter]
711
+ attr_accessor :environment_filter
712
+
713
+ def initialize(**args)
714
+ update!(**args)
715
+ end
716
+
717
+ # Update properties of this object
718
+ def update!(**args)
719
+ @environment_filter = args[:environment_filter] if args.key?(:environment_filter)
720
+ end
721
+ end
722
+
723
+ # Configuration for Apigee X and Apigee Hybrid gateways. Applicability of a
724
+ # filter is determined by the filter being provided. If none of the filters are
725
+ # provided the addon will be enabled for all data brought in by the gateway
726
+ # plugin instance.
727
+ class GoogleCloudApihubV1ApigeeXHybridConfig
728
+ include Google::Apis::Core::Hashable
729
+
730
+ # Filter for environments.
731
+ # Corresponds to the JSON property `environmentFilter`
732
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter]
733
+ attr_accessor :environment_filter
734
+
735
+ def initialize(**args)
736
+ update!(**args)
737
+ end
738
+
739
+ # Update properties of this object
740
+ def update!(**args)
741
+ @environment_filter = args[:environment_filter] if args.key?(:environment_filter)
742
+ end
743
+ end
744
+
566
745
  # The details of the Application Integration endpoint to be triggered for
567
746
  # curation.
568
747
  class GoogleCloudApihubV1ApplicationIntegrationEndpointDetails
@@ -1889,6 +2068,34 @@ module Google
1889
2068
  end
1890
2069
  end
1891
2070
 
2071
+ # Filter for environments.
2072
+ class GoogleCloudApihubV1EnvironmentFilter
2073
+ include Google::Apis::Core::Hashable
2074
+
2075
+ # Optional. Indicates if this filter should match all environments or only a
2076
+ # subset of environments. If set to true, all environments are matched.
2077
+ # Corresponds to the JSON property `allEnvironments`
2078
+ # @return [Boolean]
2079
+ attr_accessor :all_environments
2080
+ alias_method :all_environments?, :all_environments
2081
+
2082
+ # Optional. If provided, only environments in this list are matched. This field
2083
+ # is ignored if `all_environments` is true.
2084
+ # Corresponds to the JSON property `environments`
2085
+ # @return [Array<String>]
2086
+ attr_accessor :environments
2087
+
2088
+ def initialize(**args)
2089
+ update!(**args)
2090
+ end
2091
+
2092
+ # Update properties of this object
2093
+ def update!(**args)
2094
+ @all_environments = args[:all_environments] if args.key?(:all_environments)
2095
+ @environments = args[:environments] if args.key?(:environments)
2096
+ end
2097
+ end
2098
+
1892
2099
  # The ExecutePluginInstanceAction method's request.
1893
2100
  class GoogleCloudApihubV1ExecutePluginInstanceActionRequest
1894
2101
  include Google::Apis::Core::Hashable
@@ -2007,6 +2214,76 @@ module Google
2007
2214
  end
2008
2215
  end
2009
2216
 
2217
+ # Configuration for gateway plugin addons. This is used to specify the list of
2218
+ # gateway plugin configs for which the addon is enabled.
2219
+ class GoogleCloudApihubV1GatewayPluginAddonConfig
2220
+ include Google::Apis::Core::Hashable
2221
+
2222
+ # Required. The list of gateway plugin configs for which the addon is enabled.
2223
+ # Each gateway plugin config should have a unique plugin instance.
2224
+ # Corresponds to the JSON property `gatewayPluginConfigs`
2225
+ # @return [Array<Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginConfig>]
2226
+ attr_accessor :gateway_plugin_configs
2227
+
2228
+ def initialize(**args)
2229
+ update!(**args)
2230
+ end
2231
+
2232
+ # Update properties of this object
2233
+ def update!(**args)
2234
+ @gateway_plugin_configs = args[:gateway_plugin_configs] if args.key?(:gateway_plugin_configs)
2235
+ end
2236
+ end
2237
+
2238
+ # Configuration for a gateway plugin. This is used to specify configs for
2239
+ # different gateways.
2240
+ class GoogleCloudApihubV1GatewayPluginConfig
2241
+ include Google::Apis::Core::Hashable
2242
+
2243
+ # Configuration for Apigee Edge gateways. Applicability of a filter is
2244
+ # determined by the filter being provided. If none of the filters are provided
2245
+ # the addon will be enabled for all data brought in by the gateway plugin
2246
+ # instance.
2247
+ # Corresponds to the JSON property `apigeeEdgeConfig`
2248
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeEdgeConfig]
2249
+ attr_accessor :apigee_edge_config
2250
+
2251
+ # Configuration for Apigee OPDK gateways. Applicability of a filter is
2252
+ # determined by the filter being provided. If none of the filters are provided
2253
+ # the addon will be enabled for all data brought in by the gateway plugin
2254
+ # instance.
2255
+ # Corresponds to the JSON property `apigeeOpdkConfig`
2256
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeOpdkConfig]
2257
+ attr_accessor :apigee_opdk_config
2258
+
2259
+ # Configuration for Apigee X and Apigee Hybrid gateways. Applicability of a
2260
+ # filter is determined by the filter being provided. If none of the filters are
2261
+ # provided the addon will be enabled for all data brought in by the gateway
2262
+ # plugin instance.
2263
+ # Corresponds to the JSON property `apigeeXHybridConfig`
2264
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeXHybridConfig]
2265
+ attr_accessor :apigee_x_hybrid_config
2266
+
2267
+ # Required. The name of the gateway plugin instance for which the config is to
2268
+ # be specified. Format: projects/`project`/locations/`location`/plugins/`plugin`/
2269
+ # pluginInstances/`plugin_instance`
2270
+ # Corresponds to the JSON property `pluginInstance`
2271
+ # @return [String]
2272
+ attr_accessor :plugin_instance
2273
+
2274
+ def initialize(**args)
2275
+ update!(**args)
2276
+ end
2277
+
2278
+ # Update properties of this object
2279
+ def update!(**args)
2280
+ @apigee_edge_config = args[:apigee_edge_config] if args.key?(:apigee_edge_config)
2281
+ @apigee_opdk_config = args[:apigee_opdk_config] if args.key?(:apigee_opdk_config)
2282
+ @apigee_x_hybrid_config = args[:apigee_x_hybrid_config] if args.key?(:apigee_x_hybrid_config)
2283
+ @plugin_instance = args[:plugin_instance] if args.key?(:plugin_instance)
2284
+ end
2285
+ end
2286
+
2010
2287
  # Config for Google service account authentication.
2011
2288
  class GoogleCloudApihubV1GoogleServiceAccountConfig
2012
2289
  include Google::Apis::Core::Hashable
@@ -2378,6 +2655,32 @@ module Google
2378
2655
  end
2379
2656
  end
2380
2657
 
2658
+ # The ListAddons method's response.
2659
+ class GoogleCloudApihubV1ListAddonsResponse
2660
+ include Google::Apis::Core::Hashable
2661
+
2662
+ # The list of addons.
2663
+ # Corresponds to the JSON property `addons`
2664
+ # @return [Array<Google::Apis::ApihubV1::GoogleCloudApihubV1Addon>]
2665
+ attr_accessor :addons
2666
+
2667
+ # A token to retrieve the next page of results, or empty if there are no more
2668
+ # results in the list.
2669
+ # Corresponds to the JSON property `nextPageToken`
2670
+ # @return [String]
2671
+ attr_accessor :next_page_token
2672
+
2673
+ def initialize(**args)
2674
+ update!(**args)
2675
+ end
2676
+
2677
+ # Update properties of this object
2678
+ def update!(**args)
2679
+ @addons = args[:addons] if args.key?(:addons)
2680
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2681
+ end
2682
+ end
2683
+
2381
2684
  # The ListApiOperations method's response.
2382
2685
  class GoogleCloudApihubV1ListApiOperationsResponse
2383
2686
  include Google::Apis::Core::Hashable
@@ -2811,6 +3114,25 @@ module Google
2811
3114
  end
2812
3115
  end
2813
3116
 
3117
+ # The ManageAddonConfig method's request.
3118
+ class GoogleCloudApihubV1ManageAddonConfigRequest
3119
+ include Google::Apis::Core::Hashable
3120
+
3121
+ # Configuration for the addon.
3122
+ # Corresponds to the JSON property `config`
3123
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig]
3124
+ attr_accessor :config
3125
+
3126
+ def initialize(**args)
3127
+ update!(**args)
3128
+ end
3129
+
3130
+ # Update properties of this object
3131
+ def update!(**args)
3132
+ @config = args[:config] if args.key?(:config)
3133
+ end
3134
+ end
3135
+
2814
3136
  # The ManagePluginInstanceSourceData method's request.
2815
3137
  class GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest
2816
3138
  include Google::Apis::Core::Hashable
@@ -3371,6 +3693,13 @@ module Google
3371
3693
  # @return [String]
3372
3694
  attr_accessor :name
3373
3695
 
3696
+ # Optional. The source environment's config present in the gateway instance
3697
+ # linked to the plugin instance. The key is the `source_environment` name from
3698
+ # the SourceEnvironment message.
3699
+ # Corresponds to the JSON property `sourceEnvironmentsConfig`
3700
+ # @return [Hash<String,Google::Apis::ApihubV1::GoogleCloudApihubV1SourceEnvironment>]
3701
+ attr_accessor :source_environments_config
3702
+
3374
3703
  # Optional. The source project id of the plugin instance. This will be the id of
3375
3704
  # runtime project in case of gcp based plugins and org id in case of non gcp
3376
3705
  # based plugins. This field will be a required field for Google provided on-ramp
@@ -3403,6 +3732,7 @@ module Google
3403
3732
  @display_name = args[:display_name] if args.key?(:display_name)
3404
3733
  @error_message = args[:error_message] if args.key?(:error_message)
3405
3734
  @name = args[:name] if args.key?(:name)
3735
+ @source_environments_config = args[:source_environments_config] if args.key?(:source_environments_config)
3406
3736
  @source_project_id = args[:source_project_id] if args.key?(:source_project_id)
3407
3737
  @state = args[:state] if args.key?(:state)
3408
3738
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -3830,6 +4160,46 @@ module Google
3830
4160
  end
3831
4161
  end
3832
4162
 
4163
+ # Message representing the source environment details.
4164
+ class GoogleCloudApihubV1SourceEnvironment
4165
+ include Google::Apis::Core::Hashable
4166
+
4167
+ # Optional. The time at which the environment was created at the source.
4168
+ # Corresponds to the JSON property `createTime`
4169
+ # @return [String]
4170
+ attr_accessor :create_time
4171
+
4172
+ # Required. The name of the environment at the source. This should map to
4173
+ # Deployment.
4174
+ # Corresponds to the JSON property `sourceEnvironment`
4175
+ # @return [String]
4176
+ attr_accessor :source_environment
4177
+
4178
+ # The location where additional information about source environments can be
4179
+ # found. The location should be relative path of the environment manifest with
4180
+ # respect to a plugin instance.
4181
+ # Corresponds to the JSON property `sourceEnvironmentUri`
4182
+ # @return [String]
4183
+ attr_accessor :source_environment_uri
4184
+
4185
+ # Optional. The time at which the environment was last updated at the source.
4186
+ # Corresponds to the JSON property `updateTime`
4187
+ # @return [String]
4188
+ attr_accessor :update_time
4189
+
4190
+ def initialize(**args)
4191
+ update!(**args)
4192
+ end
4193
+
4194
+ # Update properties of this object
4195
+ def update!(**args)
4196
+ @create_time = args[:create_time] if args.key?(:create_time)
4197
+ @source_environment = args[:source_environment] if args.key?(:source_environment)
4198
+ @source_environment_uri = args[:source_environment_uri] if args.key?(:source_environment_uri)
4199
+ @update_time = args[:update_time] if args.key?(:update_time)
4200
+ end
4201
+ end
4202
+
3833
4203
  # SourceMetadata represents the metadata for a resource at the source.
3834
4204
  class GoogleCloudApihubV1SourceMetadata
3835
4205
  include Google::Apis::Core::Hashable
@@ -4534,6 +4904,13 @@ module Google
4534
4904
  # @return [Array<Google::Apis::ApihubV1::GoogleLongrunningOperation>]
4535
4905
  attr_accessor :operations
4536
4906
 
4907
+ # Unordered list. Unreachable resources. Populated when the request sets `
4908
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
4909
+ # when attempting to list all resources across all supported locations.
4910
+ # Corresponds to the JSON property `unreachable`
4911
+ # @return [Array<String>]
4912
+ attr_accessor :unreachable
4913
+
4537
4914
  def initialize(**args)
4538
4915
  update!(**args)
4539
4916
  end
@@ -4542,6 +4919,7 @@ module Google
4542
4919
  def update!(**args)
4543
4920
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4544
4921
  @operations = args[:operations] if args.key?(:operations)
4922
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
4545
4923
  end
4546
4924
  end
4547
4925
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApihubV1
18
18
  # Version of the google-apis-apihub_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.10.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 = "20250912"
25
+ REVISION = "20251110"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,24 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class GoogleCloudApihubV1Addon
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class GoogleCloudApihubV1AddonConfig
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class GoogleCloudApihubV1AllDataAddonConfig
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
43
61
  class GoogleCloudApihubV1AllowedValue
44
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
63
 
@@ -88,6 +106,24 @@ module Google
88
106
  include Google::Apis::Core::JsonObjectSupport
89
107
  end
90
108
 
109
+ class GoogleCloudApihubV1ApigeeEdgeConfig
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class GoogleCloudApihubV1ApigeeOpdkConfig
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class GoogleCloudApihubV1ApigeeXHybridConfig
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
91
127
  class GoogleCloudApihubV1ApplicationIntegrationEndpointDetails
92
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
129
 
@@ -262,6 +298,12 @@ module Google
262
298
  include Google::Apis::Core::JsonObjectSupport
263
299
  end
264
300
 
301
+ class GoogleCloudApihubV1EnvironmentFilter
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
265
307
  class GoogleCloudApihubV1ExecutePluginInstanceActionRequest
266
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
309
 
@@ -280,6 +322,18 @@ module Google
280
322
  include Google::Apis::Core::JsonObjectSupport
281
323
  end
282
324
 
325
+ class GoogleCloudApihubV1GatewayPluginAddonConfig
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
331
+ class GoogleCloudApihubV1GatewayPluginConfig
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
283
337
  class GoogleCloudApihubV1GoogleServiceAccountConfig
284
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
339
 
@@ -352,6 +406,12 @@ module Google
352
406
  include Google::Apis::Core::JsonObjectSupport
353
407
  end
354
408
 
409
+ class GoogleCloudApihubV1ListAddonsResponse
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
355
415
  class GoogleCloudApihubV1ListApiOperationsResponse
356
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
417
 
@@ -454,6 +514,12 @@ module Google
454
514
  include Google::Apis::Core::JsonObjectSupport
455
515
  end
456
516
 
517
+ class GoogleCloudApihubV1ManageAddonConfigRequest
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
457
523
  class GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest
458
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
525
 
@@ -628,6 +694,12 @@ module Google
628
694
  include Google::Apis::Core::JsonObjectSupport
629
695
  end
630
696
 
697
+ class GoogleCloudApihubV1SourceEnvironment
698
+ class Representation < Google::Apis::Core::JsonRepresentation; end
699
+
700
+ include Google::Apis::Core::JsonObjectSupport
701
+ end
702
+
631
703
  class GoogleCloudApihubV1SourceMetadata
632
704
  class Representation < Google::Apis::Core::JsonRepresentation; end
633
705
 
@@ -768,6 +840,38 @@ module Google
768
840
  end
769
841
  end
770
842
 
843
+ class GoogleCloudApihubV1Addon
844
+ # @private
845
+ class Representation < Google::Apis::Core::JsonRepresentation
846
+ property :config, as: 'config', class: Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig::Representation
847
+
848
+ property :create_time, as: 'createTime'
849
+ property :data_source, as: 'dataSource'
850
+ property :description, as: 'description'
851
+ property :display_name, as: 'displayName'
852
+ property :name, as: 'name'
853
+ property :state, as: 'state'
854
+ property :update_time, as: 'updateTime'
855
+ end
856
+ end
857
+
858
+ class GoogleCloudApihubV1AddonConfig
859
+ # @private
860
+ class Representation < Google::Apis::Core::JsonRepresentation
861
+ property :all_data_addon_config, as: 'allDataAddonConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1AllDataAddonConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1AllDataAddonConfig::Representation
862
+
863
+ property :gateway_plugin_addon_config, as: 'gatewayPluginAddonConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginAddonConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginAddonConfig::Representation
864
+
865
+ end
866
+ end
867
+
868
+ class GoogleCloudApihubV1AllDataAddonConfig
869
+ # @private
870
+ class Representation < Google::Apis::Core::JsonRepresentation
871
+ property :enabled, as: 'enabled'
872
+ end
873
+ end
874
+
771
875
  class GoogleCloudApihubV1AllowedValue
772
876
  # @private
773
877
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -891,6 +995,30 @@ module Google
891
995
  end
892
996
  end
893
997
 
998
+ class GoogleCloudApihubV1ApigeeEdgeConfig
999
+ # @private
1000
+ class Representation < Google::Apis::Core::JsonRepresentation
1001
+ property :environment_filter, as: 'environmentFilter', class: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter::Representation
1002
+
1003
+ end
1004
+ end
1005
+
1006
+ class GoogleCloudApihubV1ApigeeOpdkConfig
1007
+ # @private
1008
+ class Representation < Google::Apis::Core::JsonRepresentation
1009
+ property :environment_filter, as: 'environmentFilter', class: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter::Representation
1010
+
1011
+ end
1012
+ end
1013
+
1014
+ class GoogleCloudApihubV1ApigeeXHybridConfig
1015
+ # @private
1016
+ class Representation < Google::Apis::Core::JsonRepresentation
1017
+ property :environment_filter, as: 'environmentFilter', class: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1EnvironmentFilter::Representation
1018
+
1019
+ end
1020
+ end
1021
+
894
1022
  class GoogleCloudApihubV1ApplicationIntegrationEndpointDetails
895
1023
  # @private
896
1024
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1249,6 +1377,14 @@ module Google
1249
1377
  end
1250
1378
  end
1251
1379
 
1380
+ class GoogleCloudApihubV1EnvironmentFilter
1381
+ # @private
1382
+ class Representation < Google::Apis::Core::JsonRepresentation
1383
+ property :all_environments, as: 'allEnvironments'
1384
+ collection :environments, as: 'environments'
1385
+ end
1386
+ end
1387
+
1252
1388
  class GoogleCloudApihubV1ExecutePluginInstanceActionRequest
1253
1389
  # @private
1254
1390
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1283,6 +1419,27 @@ module Google
1283
1419
  end
1284
1420
  end
1285
1421
 
1422
+ class GoogleCloudApihubV1GatewayPluginAddonConfig
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ collection :gateway_plugin_configs, as: 'gatewayPluginConfigs', class: Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1GatewayPluginConfig::Representation
1426
+
1427
+ end
1428
+ end
1429
+
1430
+ class GoogleCloudApihubV1GatewayPluginConfig
1431
+ # @private
1432
+ class Representation < Google::Apis::Core::JsonRepresentation
1433
+ property :apigee_edge_config, as: 'apigeeEdgeConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeEdgeConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeEdgeConfig::Representation
1434
+
1435
+ property :apigee_opdk_config, as: 'apigeeOpdkConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeOpdkConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeOpdkConfig::Representation
1436
+
1437
+ property :apigee_x_hybrid_config, as: 'apigeeXHybridConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeXHybridConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1ApigeeXHybridConfig::Representation
1438
+
1439
+ property :plugin_instance, as: 'pluginInstance'
1440
+ end
1441
+ end
1442
+
1286
1443
  class GoogleCloudApihubV1GoogleServiceAccountConfig
1287
1444
  # @private
1288
1445
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1399,6 +1556,15 @@ module Google
1399
1556
  end
1400
1557
  end
1401
1558
 
1559
+ class GoogleCloudApihubV1ListAddonsResponse
1560
+ # @private
1561
+ class Representation < Google::Apis::Core::JsonRepresentation
1562
+ collection :addons, as: 'addons', class: Google::Apis::ApihubV1::GoogleCloudApihubV1Addon, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1Addon::Representation
1563
+
1564
+ property :next_page_token, as: 'nextPageToken'
1565
+ end
1566
+ end
1567
+
1402
1568
  class GoogleCloudApihubV1ListApiOperationsResponse
1403
1569
  # @private
1404
1570
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1550,6 +1716,14 @@ module Google
1550
1716
  end
1551
1717
  end
1552
1718
 
1719
+ class GoogleCloudApihubV1ManageAddonConfigRequest
1720
+ # @private
1721
+ class Representation < Google::Apis::Core::JsonRepresentation
1722
+ property :config, as: 'config', class: Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1AddonConfig::Representation
1723
+
1724
+ end
1725
+ end
1726
+
1553
1727
  class GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest
1554
1728
  # @private
1555
1729
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1711,6 +1885,8 @@ module Google
1711
1885
  property :display_name, as: 'displayName'
1712
1886
  property :error_message, as: 'errorMessage'
1713
1887
  property :name, as: 'name'
1888
+ hash :source_environments_config, as: 'sourceEnvironmentsConfig', class: Google::Apis::ApihubV1::GoogleCloudApihubV1SourceEnvironment, decorator: Google::Apis::ApihubV1::GoogleCloudApihubV1SourceEnvironment::Representation
1889
+
1714
1890
  property :source_project_id, as: 'sourceProjectId'
1715
1891
  property :state, as: 'state'
1716
1892
  property :update_time, as: 'updateTime'
@@ -1836,6 +2012,16 @@ module Google
1836
2012
  end
1837
2013
  end
1838
2014
 
2015
+ class GoogleCloudApihubV1SourceEnvironment
2016
+ # @private
2017
+ class Representation < Google::Apis::Core::JsonRepresentation
2018
+ property :create_time, as: 'createTime'
2019
+ property :source_environment, as: 'sourceEnvironment'
2020
+ property :source_environment_uri, as: 'sourceEnvironmentUri'
2021
+ property :update_time, as: 'updateTime'
2022
+ end
2023
+ end
2024
+
1839
2025
  class GoogleCloudApihubV1SourceMetadata
1840
2026
  # @private
1841
2027
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2032,6 +2218,7 @@ module Google
2032
2218
  property :next_page_token, as: 'nextPageToken'
2033
2219
  collection :operations, as: 'operations', class: Google::Apis::ApihubV1::GoogleLongrunningOperation, decorator: Google::Apis::ApihubV1::GoogleLongrunningOperation::Representation
2034
2220
 
2221
+ collection :unreachable, as: 'unreachable'
2035
2222
  end
2036
2223
  end
2037
2224
 
@@ -119,8 +119,8 @@ module Google
119
119
  # @param [String] name
120
120
  # The resource that owns the locations collection, if applicable.
121
121
  # @param [Array<String>, String] extra_location_types
122
- # Optional. Unless explicitly documented otherwise, don't use this unsupported
123
- # field which is primarily intended for internal usage.
122
+ # Optional. Do not use this field. It is unsupported and is ignored unless
123
+ # explicitly documented otherwise. This is primarily for internal usage.
124
124
  # @param [String] filter
125
125
  # A filter to narrow down results to a preferred subset. The filtering language
126
126
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -230,6 +230,122 @@ module Google
230
230
  execute_or_queue_command(command, &block)
231
231
  end
232
232
 
233
+ # Get an addon.
234
+ # @param [String] name
235
+ # Required. The name of the addon to get. Format: `projects/`project`/locations/`
236
+ # location`/addons/`addon``.
237
+ # @param [String] fields
238
+ # Selector specifying which fields to include in a partial response.
239
+ # @param [String] quota_user
240
+ # Available to use for quota purposes for server-side applications. Can be any
241
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
242
+ # @param [Google::Apis::RequestOptions] options
243
+ # Request-specific options
244
+ #
245
+ # @yield [result, err] Result & error if block supplied
246
+ # @yieldparam result [Google::Apis::ApihubV1::GoogleCloudApihubV1Addon] parsed result object
247
+ # @yieldparam err [StandardError] error object if request failed
248
+ #
249
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1Addon]
250
+ #
251
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
252
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
253
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
254
+ def get_project_location_addon(name, fields: nil, quota_user: nil, options: nil, &block)
255
+ command = make_simple_command(:get, 'v1/{+name}', options)
256
+ command.response_representation = Google::Apis::ApihubV1::GoogleCloudApihubV1Addon::Representation
257
+ command.response_class = Google::Apis::ApihubV1::GoogleCloudApihubV1Addon
258
+ command.params['name'] = name unless name.nil?
259
+ command.query['fields'] = fields unless fields.nil?
260
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
261
+ execute_or_queue_command(command, &block)
262
+ end
263
+
264
+ # List addons.
265
+ # @param [String] parent
266
+ # Required. The parent resource where this addon will be created. Format: `
267
+ # projects/`project`/locations/`location``.
268
+ # @param [String] filter
269
+ # Optional. An expression that filters the list of addons. The only supported
270
+ # filter is `plugin_instance_name`. It can be used to filter addons that are
271
+ # enabled for a given plugin instance. The format of the filter is `
272
+ # plugin_instance_name = "projects/`project`/locations/`location`/plugins/`
273
+ # plugin`/instances/`instance`"`.
274
+ # @param [Fixnum] page_size
275
+ # Optional. The maximum number of hub addons to return. The service may return
276
+ # fewer than this value. If unspecified, at most 50 hub addons will be returned.
277
+ # The maximum value is 1000; values above 1000 will be coerced to 1000.
278
+ # @param [String] page_token
279
+ # Optional. A page token, received from a previous `ListAddons` call. Provide
280
+ # this to retrieve the subsequent page. When paginating, all other parameters (
281
+ # except page_size) provided to `ListAddons` must match the call that provided
282
+ # the page token.
283
+ # @param [String] fields
284
+ # Selector specifying which fields to include in a partial response.
285
+ # @param [String] quota_user
286
+ # Available to use for quota purposes for server-side applications. Can be any
287
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
288
+ # @param [Google::Apis::RequestOptions] options
289
+ # Request-specific options
290
+ #
291
+ # @yield [result, err] Result & error if block supplied
292
+ # @yieldparam result [Google::Apis::ApihubV1::GoogleCloudApihubV1ListAddonsResponse] parsed result object
293
+ # @yieldparam err [StandardError] error object if request failed
294
+ #
295
+ # @return [Google::Apis::ApihubV1::GoogleCloudApihubV1ListAddonsResponse]
296
+ #
297
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
298
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
299
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
300
+ def list_project_location_addons(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
301
+ command = make_simple_command(:get, 'v1/{+parent}/addons', options)
302
+ command.response_representation = Google::Apis::ApihubV1::GoogleCloudApihubV1ListAddonsResponse::Representation
303
+ command.response_class = Google::Apis::ApihubV1::GoogleCloudApihubV1ListAddonsResponse
304
+ command.params['parent'] = parent unless parent.nil?
305
+ command.query['filter'] = filter unless filter.nil?
306
+ command.query['pageSize'] = page_size unless page_size.nil?
307
+ command.query['pageToken'] = page_token unless page_token.nil?
308
+ command.query['fields'] = fields unless fields.nil?
309
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
310
+ execute_or_queue_command(command, &block)
311
+ end
312
+
313
+ # Manage addon config. This RPC is used for managing the config of the addon.
314
+ # Calling this RPC moves the addon into an updating state until the long-running
315
+ # operation succeeds.
316
+ # @param [String] name
317
+ # Required. The name of the addon for which the config is to be managed. Format:
318
+ # `projects/`project`/locations/`location`/addons/`addon``.
319
+ # @param [Google::Apis::ApihubV1::GoogleCloudApihubV1ManageAddonConfigRequest] google_cloud_apihub_v1_manage_addon_config_request_object
320
+ # @param [String] fields
321
+ # Selector specifying which fields to include in a partial response.
322
+ # @param [String] quota_user
323
+ # Available to use for quota purposes for server-side applications. Can be any
324
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
325
+ # @param [Google::Apis::RequestOptions] options
326
+ # Request-specific options
327
+ #
328
+ # @yield [result, err] Result & error if block supplied
329
+ # @yieldparam result [Google::Apis::ApihubV1::GoogleLongrunningOperation] parsed result object
330
+ # @yieldparam err [StandardError] error object if request failed
331
+ #
332
+ # @return [Google::Apis::ApihubV1::GoogleLongrunningOperation]
333
+ #
334
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
335
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
336
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
337
+ def manage_project_location_addon_config(name, google_cloud_apihub_v1_manage_addon_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
338
+ command = make_simple_command(:post, 'v1/{+name}:manageConfig', options)
339
+ command.request_representation = Google::Apis::ApihubV1::GoogleCloudApihubV1ManageAddonConfigRequest::Representation
340
+ command.request_object = google_cloud_apihub_v1_manage_addon_config_request_object
341
+ command.response_representation = Google::Apis::ApihubV1::GoogleLongrunningOperation::Representation
342
+ command.response_class = Google::Apis::ApihubV1::GoogleLongrunningOperation
343
+ command.params['name'] = name unless name.nil?
344
+ command.query['fields'] = fields unless fields.nil?
345
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
346
+ execute_or_queue_command(command, &block)
347
+ end
348
+
233
349
  # Provisions instance resources for the API Hub.
234
350
  # @param [String] parent
235
351
  # Required. The parent resource for the Api Hub instance resource. Format: `
@@ -605,9 +721,10 @@ module Google
605
721
 
606
722
  # Update an API resource in the API hub. The following fields in the API can be
607
723
  # updated: * display_name * description * owner * documentation * target_user *
608
- # team * business_unit * maturity_level * api_style * attributes The update_mask
609
- # should be used to specify the fields being updated. Updating the owner field
610
- # requires complete owner message and updates both owner and email fields.
724
+ # team * business_unit * maturity_level * api_style * attributes * fingerprint
725
+ # The update_mask should be used to specify the fields being updated. Updating
726
+ # the owner field requires complete owner message and updates both owner and
727
+ # email fields.
611
728
  # @param [String] name
612
729
  # Identifier. The name of the API resource in the API Hub. Format: `projects/`
613
730
  # project`/locations/`location`/apis/`api``
@@ -1147,10 +1264,15 @@ module Google
1147
1264
  # Update an operation in an API version. The following fields in the
1148
1265
  # ApiOperation resource can be updated: * details.description * details.
1149
1266
  # documentation * details.http_operation.path * details.http_operation.method *
1150
- # details.deprecated * attributes The update_mask should be used to specify the
1151
- # fields being updated. An operation can be updated only if the operation was
1152
- # created via CreateApiOperation API. If the operation was created by parsing
1153
- # the spec, then it can be edited by updating the spec.
1267
+ # details.deprecated * attributes * details.mcp_tool.title * details.mcp_tool.
1268
+ # description * details.input_schema * details.output_schema * details.mcp_tool.
1269
+ # annotations.title * details.mcp_tool.annotations.read_only_hint * details.
1270
+ # mcp_tool.annotations.destructive_hint * details.mcp_tool.annotations.
1271
+ # idempotent_hint * details.mcp_tool.annotations.open_world_hint * details.
1272
+ # mcp_tool.annotations.additional_hints The update_mask should be used to
1273
+ # specify the fields being updated. An operation can be updated only if the
1274
+ # operation was created via CreateApiOperation API. If the operation was created
1275
+ # by parsing the spec, then it can be edited by updating the spec.
1154
1276
  # @param [String] name
1155
1277
  # Identifier. The name of the operation. Format: `projects/`project`/locations/`
1156
1278
  # location`/apis/`api`/versions/`version`/operations/`operation``
@@ -3015,6 +3137,13 @@ module Google
3015
3137
  # The standard list page size.
3016
3138
  # @param [String] page_token
3017
3139
  # The standard list page token.
3140
+ # @param [Boolean] return_partial_success
3141
+ # When set to `true`, operations that are reachable are returned as normal, and
3142
+ # those that are unreachable are returned in the [ListOperationsResponse.
3143
+ # unreachable] field. This can only be `true` when reading across collections e.
3144
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3145
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3146
+ # explicitly documented otherwise in service or product specific documentation.
3018
3147
  # @param [String] fields
3019
3148
  # Selector specifying which fields to include in a partial response.
3020
3149
  # @param [String] quota_user
@@ -3032,7 +3161,7 @@ module Google
3032
3161
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3033
3162
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3034
3163
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3035
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3164
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
3036
3165
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
3037
3166
  command.response_representation = Google::Apis::ApihubV1::GoogleLongrunningListOperationsResponse::Representation
3038
3167
  command.response_class = Google::Apis::ApihubV1::GoogleLongrunningListOperationsResponse
@@ -3040,6 +3169,7 @@ module Google
3040
3169
  command.query['filter'] = filter unless filter.nil?
3041
3170
  command.query['pageSize'] = page_size unless page_size.nil?
3042
3171
  command.query['pageToken'] = page_token unless page_token.nil?
3172
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3043
3173
  command.query['fields'] = fields unless fields.nil?
3044
3174
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3045
3175
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apihub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.10.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-apihub_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apihub_v1/v0.8.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apihub_v1/v0.10.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apihub_v1
62
62
  rdoc_options: []
63
63
  require_paths: