google-apis-integrations_v1alpha 0.3.0 → 0.5.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: b95b026a57ba8746ad52ad43f1cc2a6c066cb700e719d5754acf4f81e64ec97f
4
- data.tar.gz: 5dea2426135f7d76a718faf0e8c12776a8f7743fb448d90724c7397d63b17759
3
+ metadata.gz: 12bb0f0a6abd2350b015815aa81890e8122c75e708fee2511ae9e2694ae9a073
4
+ data.tar.gz: ed547cc9ec7fcd65a3cefb6d35e0b5e7d14887c70d3e9a9087170823ce15df4b
5
5
  SHA512:
6
- metadata.gz: 76fa717063fa8ad050c38465afaee836572f37040a395cbf4ad2b6ed6ad4828853852d405e786de9ccef61bc0b84b05cd31268fb53bca1ee198a58a40b88c069
7
- data.tar.gz: c7337d0e4afb34727bb4f168c57f86572e7fadbe69e32ab924ce143374353b2fb06d2cd213a5bd925c815996cfc0bc7a3bf6df188b334ed8e16adc1fc31a08fe
6
+ metadata.gz: 06cccc0fe14b4fa4e886054f2dfca6f54a6d2e20ef6c01e4608471645211feac9f67019f7081d370207fce83215b2c778058082d61dc6925d76d945090d95b0e
7
+ data.tar.gz: ce4c9c7e4c9e78cb33b90f29f7fa70c4da5b24336220fe536d4b63369cff18fd9bd07a4f35553a7c4c9c016f4e40023812e199f7562113c7280a4015a3b8ed6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-integrations_v1alpha
2
2
 
3
+ ### v0.5.0 (2023-01-08)
4
+
5
+ * Regenerated from discovery document revision 20230103
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.4.0 (2023-01-01)
9
+
10
+ * Regenerated from discovery document revision 20221220
11
+
3
12
  ### v0.3.0 (2022-11-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20221122
@@ -42,185 +42,6 @@ module Google
42
42
  end
43
43
  end
44
44
 
45
- #
46
- class EnterpriseCrmCardsCellValue
47
- include Google::Apis::Core::Hashable
48
-
49
- #
50
- # Corresponds to the JSON property `booleanValue`
51
- # @return [Boolean]
52
- attr_accessor :boolean_value
53
- alias_method :boolean_value?, :boolean_value
54
-
55
- #
56
- # Corresponds to the JSON property `doubleValue`
57
- # @return [Float]
58
- attr_accessor :double_value
59
-
60
- # A generic empty message that you can re-use to avoid defining duplicated empty
61
- # messages in your APIs. A typical example is to use it as the request or the
62
- # response type of an API method. For instance: service Foo ` rpc Bar(google.
63
- # protobuf.Empty) returns (google.protobuf.Empty); `
64
- # Corresponds to the JSON property `empty`
65
- # @return [Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty]
66
- attr_accessor :empty
67
-
68
- #
69
- # Corresponds to the JSON property `longValue`
70
- # @return [Fixnum]
71
- attr_accessor :long_value
72
-
73
- #
74
- # Corresponds to the JSON property `stringValue`
75
- # @return [String]
76
- attr_accessor :string_value
77
-
78
- def initialize(**args)
79
- update!(**args)
80
- end
81
-
82
- # Update properties of this object
83
- def update!(**args)
84
- @boolean_value = args[:boolean_value] if args.key?(:boolean_value)
85
- @double_value = args[:double_value] if args.key?(:double_value)
86
- @empty = args[:empty] if args.key?(:empty)
87
- @long_value = args[:long_value] if args.key?(:long_value)
88
- @string_value = args[:string_value] if args.key?(:string_value)
89
- end
90
- end
91
-
92
- #
93
- class EnterpriseCrmCardsRow
94
- include Google::Apis::Core::Hashable
95
-
96
- # Ordered list of cell values within a row.
97
- # Corresponds to the JSON property `cells`
98
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue>]
99
- attr_accessor :cells
100
-
101
- def initialize(**args)
102
- update!(**args)
103
- end
104
-
105
- # Update properties of this object
106
- def update!(**args)
107
- @cells = args[:cells] if args.key?(:cells)
108
- end
109
- end
110
-
111
- # The generic data format returned from all connectors.
112
- class EnterpriseCrmCardsTabularData
113
- include Google::Apis::Core::Hashable
114
-
115
- # Ordered list of column headers.
116
- # Corresponds to the JSON property `headers`
117
- # @return [Array<String>]
118
- attr_accessor :headers
119
-
120
- # Ordered list of table rows.
121
- # Corresponds to the JSON property `rows`
122
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow>]
123
- attr_accessor :rows
124
-
125
- def initialize(**args)
126
- update!(**args)
127
- end
128
-
129
- # Update properties of this object
130
- def update!(**args)
131
- @headers = args[:headers] if args.key?(:headers)
132
- @rows = args[:rows] if args.key?(:rows)
133
- end
134
- end
135
-
136
- # Data used to render an Aplos Series card.
137
- class EnterpriseCrmCardsTemplatesAplosSeriesData
138
- include Google::Apis::Core::Hashable
139
-
140
- # A single Series Row
141
- # Corresponds to the JSON property `rows`
142
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow>]
143
- attr_accessor :rows
144
-
145
- def initialize(**args)
146
- update!(**args)
147
- end
148
-
149
- # Update properties of this object
150
- def update!(**args)
151
- @rows = args[:rows] if args.key?(:rows)
152
- end
153
- end
154
-
155
- # Aplos series row is exactly two columns labeled x and y.
156
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
157
- include Google::Apis::Core::Hashable
158
-
159
- #
160
- # Corresponds to the JSON property `x`
161
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
162
- attr_accessor :x
163
-
164
- #
165
- # Corresponds to the JSON property `y`
166
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
167
- attr_accessor :y
168
-
169
- def initialize(**args)
170
- update!(**args)
171
- end
172
-
173
- # Update properties of this object
174
- def update!(**args)
175
- @x = args[:x] if args.key?(:x)
176
- @y = args[:y] if args.key?(:y)
177
- end
178
- end
179
-
180
- # Data used for Aplos charts that accept multiple Series.
181
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
182
- include Google::Apis::Core::Hashable
183
-
184
- #
185
- # Corresponds to the JSON property `series`
186
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries>]
187
- attr_accessor :series
188
-
189
- def initialize(**args)
190
- update!(**args)
191
- end
192
-
193
- # Update properties of this object
194
- def update!(**args)
195
- @series = args[:series] if args.key?(:series)
196
- end
197
- end
198
-
199
- #
200
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
201
- include Google::Apis::Core::Hashable
202
-
203
- # Data used to render an Aplos Series card.
204
- # Corresponds to the JSON property `data`
205
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData]
206
- attr_accessor :data
207
-
208
- #
209
- # Corresponds to the JSON property `name`
210
- # @return [String]
211
- attr_accessor :name
212
-
213
- def initialize(**args)
214
- update!(**args)
215
- end
216
-
217
- # Update properties of this object
218
- def update!(**args)
219
- @data = args[:data] if args.key?(:data)
220
- @name = args[:name] if args.key?(:name)
221
- end
222
- end
223
-
224
45
  #
225
46
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
226
47
  include Google::Apis::Core::Hashable
@@ -2710,6 +2531,11 @@ module Google
2710
2531
  # @return [String]
2711
2532
  attr_accessor :resolved_by
2712
2533
 
2534
+ #
2535
+ # Corresponds to the JSON property `resolvedByCpi`
2536
+ # @return [String]
2537
+ attr_accessor :resolved_by_cpi
2538
+
2713
2539
  #
2714
2540
  # Corresponds to the JSON property `timestamp`
2715
2541
  # @return [String]
@@ -2722,6 +2548,7 @@ module Google
2722
2548
  # Update properties of this object
2723
2549
  def update!(**args)
2724
2550
  @resolved_by = args[:resolved_by] if args.key?(:resolved_by)
2551
+ @resolved_by_cpi = args[:resolved_by_cpi] if args.key?(:resolved_by_cpi)
2725
2552
  @timestamp = args[:timestamp] if args.key?(:timestamp)
2726
2553
  end
2727
2554
  end
@@ -5244,7 +5071,7 @@ module Google
5244
5071
  # @return [String]
5245
5072
  attr_accessor :name
5246
5073
 
5247
- # Configuration for the connection.
5074
+ # Node configuration for the connection.
5248
5075
  # Corresponds to the JSON property `nodeConfig`
5249
5076
  # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1NodeConfig]
5250
5077
  attr_accessor :node_config
@@ -5418,7 +5245,7 @@ module Google
5418
5245
  end
5419
5246
  end
5420
5247
 
5421
- # Configuration for the connection.
5248
+ # Node configuration for the connection.
5422
5249
  class GoogleCloudConnectorsV1NodeConfig
5423
5250
  include Google::Apis::Core::Hashable
5424
5251
 
@@ -7709,251 +7536,6 @@ module Google
7709
7536
  end
7710
7537
  end
7711
7538
 
7712
- # The request to get data for monarch connector config.
7713
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
7714
- include Google::Apis::Core::Hashable
7715
-
7716
- # How long the series data range: "1h","1d",etc.
7717
- # Corresponds to the JSON property `duration`
7718
- # @return [String]
7719
- attr_accessor :duration
7720
-
7721
- # Final time to query over, or the current time if left unset.
7722
- # Corresponds to the JSON property `endTime`
7723
- # @return [String]
7724
- attr_accessor :end_time
7725
-
7726
- # The MashQuery for searching data, set both queries for Join Operation.
7727
- # Corresponds to the JSON property `mashQuery`
7728
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery]
7729
- attr_accessor :mash_query
7730
-
7731
- # Returns a table of all possible metric field values within the specified
7732
- # duration, ignoring any data samples. Useful for autocomplete functionality.
7733
- # Corresponds to the JSON property `metricFieldTable`
7734
- # @return [Boolean]
7735
- attr_accessor :metric_field_table
7736
- alias_method :metric_field_table?, :metric_field_table
7737
-
7738
- # The output period for the query. Must be set if there is a window operation
7739
- # within the query and unset otherwise.
7740
- # Corresponds to the JSON property `outputPeriod`
7741
- # @return [String]
7742
- attr_accessor :output_period
7743
-
7744
- # Required. Template for response.
7745
- # Corresponds to the JSON property `responseTemplate`
7746
- # @return [String]
7747
- attr_accessor :response_template
7748
-
7749
- def initialize(**args)
7750
- update!(**args)
7751
- end
7752
-
7753
- # Update properties of this object
7754
- def update!(**args)
7755
- @duration = args[:duration] if args.key?(:duration)
7756
- @end_time = args[:end_time] if args.key?(:end_time)
7757
- @mash_query = args[:mash_query] if args.key?(:mash_query)
7758
- @metric_field_table = args[:metric_field_table] if args.key?(:metric_field_table)
7759
- @output_period = args[:output_period] if args.key?(:output_period)
7760
- @response_template = args[:response_template] if args.key?(:response_template)
7761
- end
7762
- end
7763
-
7764
- # MashQuery GroupBy parameters.
7765
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
7766
- include Google::Apis::Core::Hashable
7767
-
7768
- # Optional. optional, metrics list for GroupBy.
7769
- # Corresponds to the JSON property `fields`
7770
- # @return [Array<String>]
7771
- attr_accessor :fields
7772
-
7773
- # Optional. optional, reduce function for GroupBy.
7774
- # Corresponds to the JSON property `reducer`
7775
- # @return [String]
7776
- attr_accessor :reducer
7777
-
7778
- def initialize(**args)
7779
- update!(**args)
7780
- end
7781
-
7782
- # Update properties of this object
7783
- def update!(**args)
7784
- @fields = args[:fields] if args.key?(:fields)
7785
- @reducer = args[:reducer] if args.key?(:reducer)
7786
- end
7787
- end
7788
-
7789
- # The MashQuery for searching data, set both queries for Join Operation.
7790
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
7791
- include Google::Apis::Core::Hashable
7792
-
7793
- # The components for constructing MashQuery.
7794
- # Corresponds to the JSON property `firstQuery`
7795
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7796
- attr_accessor :first_query
7797
-
7798
- # Operation between 2 query
7799
- # Corresponds to the JSON property `operationMode`
7800
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode]
7801
- attr_accessor :operation_mode
7802
-
7803
- # The components for constructing MashQuery.
7804
- # Corresponds to the JSON property `secondQuery`
7805
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7806
- attr_accessor :second_query
7807
-
7808
- def initialize(**args)
7809
- update!(**args)
7810
- end
7811
-
7812
- # Update properties of this object
7813
- def update!(**args)
7814
- @first_query = args[:first_query] if args.key?(:first_query)
7815
- @operation_mode = args[:operation_mode] if args.key?(:operation_mode)
7816
- @second_query = args[:second_query] if args.key?(:second_query)
7817
- end
7818
- end
7819
-
7820
- # The components for constructing MashQuery.
7821
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
7822
- include Google::Apis::Core::Hashable
7823
-
7824
- # Required. The metric for monarch.BorgTask.
7825
- # Corresponds to the JSON property `borgTaskMetric`
7826
- # @return [String]
7827
- attr_accessor :borg_task_metric
7828
-
7829
- # Optional. optional, filters on fetched data, "metric:client_id" not supported.
7830
- # Corresponds to the JSON property `dataFilters`
7831
- # @return [Array<String>]
7832
- attr_accessor :data_filters
7833
-
7834
- # Optional. optional, filters for Fetch Raw, "metric:client_id" not supported.
7835
- # Corresponds to the JSON property `fetchFilters`
7836
- # @return [Array<String>]
7837
- attr_accessor :fetch_filters
7838
-
7839
- # MashQuery GroupBy parameters.
7840
- # Corresponds to the JSON property `groupBy`
7841
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy]
7842
- attr_accessor :group_by
7843
-
7844
- # Optional. optional, Point Operation on single query or joined query.
7845
- # Corresponds to the JSON property `pointOperation`
7846
- # @return [String]
7847
- attr_accessor :point_operation
7848
-
7849
- # Required. Window time delta.
7850
- # Corresponds to the JSON property `timeDelta`
7851
- # @return [String]
7852
- attr_accessor :time_delta
7853
-
7854
- def initialize(**args)
7855
- update!(**args)
7856
- end
7857
-
7858
- # Update properties of this object
7859
- def update!(**args)
7860
- @borg_task_metric = args[:borg_task_metric] if args.key?(:borg_task_metric)
7861
- @data_filters = args[:data_filters] if args.key?(:data_filters)
7862
- @fetch_filters = args[:fetch_filters] if args.key?(:fetch_filters)
7863
- @group_by = args[:group_by] if args.key?(:group_by)
7864
- @point_operation = args[:point_operation] if args.key?(:point_operation)
7865
- @time_delta = args[:time_delta] if args.key?(:time_delta)
7866
- end
7867
- end
7868
-
7869
- # Operation between 2 query
7870
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
7871
- include Google::Apis::Core::Hashable
7872
-
7873
- # Join Operation
7874
- # Corresponds to the JSON property `joinConfig`
7875
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig]
7876
- attr_accessor :join_config
7877
-
7878
- # Optional. optional operation types.
7879
- # Corresponds to the JSON property `operationType`
7880
- # @return [String]
7881
- attr_accessor :operation_type
7882
-
7883
- # Union operation
7884
- # Corresponds to the JSON property `unionConfig`
7885
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig]
7886
- attr_accessor :union_config
7887
-
7888
- def initialize(**args)
7889
- update!(**args)
7890
- end
7891
-
7892
- # Update properties of this object
7893
- def update!(**args)
7894
- @join_config = args[:join_config] if args.key?(:join_config)
7895
- @operation_type = args[:operation_type] if args.key?(:operation_type)
7896
- @union_config = args[:union_config] if args.key?(:union_config)
7897
- end
7898
- end
7899
-
7900
- # Join Operation
7901
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
7902
- include Google::Apis::Core::Hashable
7903
-
7904
- def initialize(**args)
7905
- update!(**args)
7906
- end
7907
-
7908
- # Update properties of this object
7909
- def update!(**args)
7910
- end
7911
- end
7912
-
7913
- # Union operation
7914
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
7915
- include Google::Apis::Core::Hashable
7916
-
7917
- # Optional. optional, reduce function
7918
- # Corresponds to the JSON property `reducer`
7919
- # @return [String]
7920
- attr_accessor :reducer
7921
-
7922
- def initialize(**args)
7923
- update!(**args)
7924
- end
7925
-
7926
- # Update properties of this object
7927
- def update!(**args)
7928
- @reducer = args[:reducer] if args.key?(:reducer)
7929
- end
7930
- end
7931
-
7932
- # The response for getting Execution stats.
7933
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
7934
- include Google::Apis::Core::Hashable
7935
-
7936
- # Data used for Aplos charts that accept multiple Series.
7937
- # Corresponds to the JSON property `aplosSeriesListData`
7938
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData]
7939
- attr_accessor :aplos_series_list_data
7940
-
7941
- # The generic data format returned from all connectors.
7942
- # Corresponds to the JSON property `tableData`
7943
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData]
7944
- attr_accessor :table_data
7945
-
7946
- def initialize(**args)
7947
- update!(**args)
7948
- end
7949
-
7950
- # Update properties of this object
7951
- def update!(**args)
7952
- @aplos_series_list_data = args[:aplos_series_list_data] if args.key?(:aplos_series_list_data)
7953
- @table_data = args[:table_data] if args.key?(:table_data)
7954
- end
7955
- end
7956
-
7957
7539
  # The task that is next in line to be executed, if the condition specified
7958
7540
  # evaluated to true.
7959
7541
  class GoogleCloudIntegrationsV1alphaNextTask
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1alpha
18
18
  # Version of the google-apis-integrations_v1alpha gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221122"
25
+ REVISION = "20230103"
26
26
  end
27
27
  end
28
28
  end
@@ -28,48 +28,6 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
- class EnterpriseCrmCardsCellValue
32
- class Representation < Google::Apis::Core::JsonRepresentation; end
33
-
34
- include Google::Apis::Core::JsonObjectSupport
35
- end
36
-
37
- class EnterpriseCrmCardsRow
38
- class Representation < Google::Apis::Core::JsonRepresentation; end
39
-
40
- include Google::Apis::Core::JsonObjectSupport
41
- end
42
-
43
- class EnterpriseCrmCardsTabularData
44
- class Representation < Google::Apis::Core::JsonRepresentation; end
45
-
46
- include Google::Apis::Core::JsonObjectSupport
47
- end
48
-
49
- class EnterpriseCrmCardsTemplatesAplosSeriesData
50
- class Representation < Google::Apis::Core::JsonRepresentation; end
51
-
52
- include Google::Apis::Core::JsonObjectSupport
53
- end
54
-
55
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
56
- class Representation < Google::Apis::Core::JsonRepresentation; end
57
-
58
- include Google::Apis::Core::JsonObjectSupport
59
- end
60
-
61
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
62
- class Representation < Google::Apis::Core::JsonRepresentation; end
63
-
64
- include Google::Apis::Core::JsonObjectSupport
65
- end
66
-
67
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
68
- class Representation < Google::Apis::Core::JsonRepresentation; end
69
-
70
- include Google::Apis::Core::JsonObjectSupport
71
- end
72
-
73
31
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
74
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
33
 
@@ -1234,54 +1192,6 @@ module Google
1234
1192
  include Google::Apis::Core::JsonObjectSupport
1235
1193
  end
1236
1194
 
1237
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
1238
- class Representation < Google::Apis::Core::JsonRepresentation; end
1239
-
1240
- include Google::Apis::Core::JsonObjectSupport
1241
- end
1242
-
1243
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
1244
- class Representation < Google::Apis::Core::JsonRepresentation; end
1245
-
1246
- include Google::Apis::Core::JsonObjectSupport
1247
- end
1248
-
1249
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
1250
- class Representation < Google::Apis::Core::JsonRepresentation; end
1251
-
1252
- include Google::Apis::Core::JsonObjectSupport
1253
- end
1254
-
1255
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
1256
- class Representation < Google::Apis::Core::JsonRepresentation; end
1257
-
1258
- include Google::Apis::Core::JsonObjectSupport
1259
- end
1260
-
1261
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
1262
- class Representation < Google::Apis::Core::JsonRepresentation; end
1263
-
1264
- include Google::Apis::Core::JsonObjectSupport
1265
- end
1266
-
1267
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
1268
- class Representation < Google::Apis::Core::JsonRepresentation; end
1269
-
1270
- include Google::Apis::Core::JsonObjectSupport
1271
- end
1272
-
1273
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
1274
- class Representation < Google::Apis::Core::JsonRepresentation; end
1275
-
1276
- include Google::Apis::Core::JsonObjectSupport
1277
- end
1278
-
1279
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
1280
- class Representation < Google::Apis::Core::JsonRepresentation; end
1281
-
1282
- include Google::Apis::Core::JsonObjectSupport
1283
- end
1284
-
1285
1195
  class GoogleCloudIntegrationsV1alphaNextTask
1286
1196
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1197
 
@@ -1529,70 +1439,6 @@ module Google
1529
1439
  end
1530
1440
  end
1531
1441
 
1532
- class EnterpriseCrmCardsCellValue
1533
- # @private
1534
- class Representation < Google::Apis::Core::JsonRepresentation
1535
- property :boolean_value, as: 'booleanValue'
1536
- property :double_value, as: 'doubleValue'
1537
- property :empty, as: 'empty', class: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty, decorator: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty::Representation
1538
-
1539
- property :long_value, :numeric_string => true, as: 'longValue'
1540
- property :string_value, as: 'stringValue'
1541
- end
1542
- end
1543
-
1544
- class EnterpriseCrmCardsRow
1545
- # @private
1546
- class Representation < Google::Apis::Core::JsonRepresentation
1547
- collection :cells, as: 'cells', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1548
-
1549
- end
1550
- end
1551
-
1552
- class EnterpriseCrmCardsTabularData
1553
- # @private
1554
- class Representation < Google::Apis::Core::JsonRepresentation
1555
- collection :headers, as: 'headers'
1556
- collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow::Representation
1557
-
1558
- end
1559
- end
1560
-
1561
- class EnterpriseCrmCardsTemplatesAplosSeriesData
1562
- # @private
1563
- class Representation < Google::Apis::Core::JsonRepresentation
1564
- collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow::Representation
1565
-
1566
- end
1567
- end
1568
-
1569
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
1570
- # @private
1571
- class Representation < Google::Apis::Core::JsonRepresentation
1572
- property :x, as: 'x', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1573
-
1574
- property :y, as: 'y', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1575
-
1576
- end
1577
- end
1578
-
1579
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
1580
- # @private
1581
- class Representation < Google::Apis::Core::JsonRepresentation
1582
- collection :series, as: 'series', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries::Representation
1583
-
1584
- end
1585
- end
1586
-
1587
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
1588
- # @private
1589
- class Representation < Google::Apis::Core::JsonRepresentation
1590
- property :data, as: 'data', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData::Representation
1591
-
1592
- property :name, as: 'name'
1593
- end
1594
- end
1595
-
1596
1442
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
1597
1443
  # @private
1598
1444
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2347,6 +2193,7 @@ module Google
2347
2193
  # @private
2348
2194
  class Representation < Google::Apis::Core::JsonRepresentation
2349
2195
  property :resolved_by, as: 'resolvedBy'
2196
+ property :resolved_by_cpi, as: 'resolvedByCpi'
2350
2197
  property :timestamp, as: 'timestamp'
2351
2198
  end
2352
2199
  end
@@ -3709,86 +3556,6 @@ module Google
3709
3556
  end
3710
3557
  end
3711
3558
 
3712
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
3713
- # @private
3714
- class Representation < Google::Apis::Core::JsonRepresentation
3715
- property :duration, as: 'duration'
3716
- property :end_time, as: 'endTime'
3717
- property :mash_query, as: 'mashQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery::Representation
3718
-
3719
- property :metric_field_table, as: 'metricFieldTable'
3720
- property :output_period, as: 'outputPeriod'
3721
- property :response_template, as: 'responseTemplate'
3722
- end
3723
- end
3724
-
3725
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
3726
- # @private
3727
- class Representation < Google::Apis::Core::JsonRepresentation
3728
- collection :fields, as: 'fields'
3729
- property :reducer, as: 'reducer'
3730
- end
3731
- end
3732
-
3733
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
3734
- # @private
3735
- class Representation < Google::Apis::Core::JsonRepresentation
3736
- property :first_query, as: 'firstQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
3737
-
3738
- property :operation_mode, as: 'operationMode', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode::Representation
3739
-
3740
- property :second_query, as: 'secondQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
3741
-
3742
- end
3743
- end
3744
-
3745
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
3746
- # @private
3747
- class Representation < Google::Apis::Core::JsonRepresentation
3748
- property :borg_task_metric, as: 'borgTaskMetric'
3749
- collection :data_filters, as: 'dataFilters'
3750
- collection :fetch_filters, as: 'fetchFilters'
3751
- property :group_by, as: 'groupBy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy::Representation
3752
-
3753
- property :point_operation, as: 'pointOperation'
3754
- property :time_delta, as: 'timeDelta'
3755
- end
3756
- end
3757
-
3758
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
3759
- # @private
3760
- class Representation < Google::Apis::Core::JsonRepresentation
3761
- property :join_config, as: 'joinConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig::Representation
3762
-
3763
- property :operation_type, as: 'operationType'
3764
- property :union_config, as: 'unionConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig::Representation
3765
-
3766
- end
3767
- end
3768
-
3769
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
3770
- # @private
3771
- class Representation < Google::Apis::Core::JsonRepresentation
3772
- end
3773
- end
3774
-
3775
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
3776
- # @private
3777
- class Representation < Google::Apis::Core::JsonRepresentation
3778
- property :reducer, as: 'reducer'
3779
- end
3780
- end
3781
-
3782
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
3783
- # @private
3784
- class Representation < Google::Apis::Core::JsonRepresentation
3785
- property :aplos_series_list_data, as: 'aplosSeriesListData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData::Representation
3786
-
3787
- property :table_data, as: 'tableData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData::Representation
3788
-
3789
- end
3790
- end
3791
-
3792
3559
  class GoogleCloudIntegrationsV1alphaNextTask
3793
3560
  # @private
3794
3561
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -755,39 +755,6 @@ module Google
755
755
  execute_or_queue_command(command, &block)
756
756
  end
757
757
 
758
- # Get execution stats
759
- # @param [String] parent
760
- # Required. The parent resource name: `parent=projects/*/locations/*`.
761
- # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
762
- # @param [String] fields
763
- # Selector specifying which fields to include in a partial response.
764
- # @param [String] quota_user
765
- # Available to use for quota purposes for server-side applications. Can be any
766
- # arbitrary string assigned to a user, but should not exceed 40 characters.
767
- # @param [Google::Apis::RequestOptions] options
768
- # Request-specific options
769
- #
770
- # @yield [result, err] Result & error if block supplied
771
- # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
772
- # @yieldparam err [StandardError] error object if request failed
773
- #
774
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
775
- #
776
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
777
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
778
- # @raise [Google::Apis::AuthorizationError] Authorization is required
779
- def monitorexecutionstats_project_location_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
780
- command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
781
- command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
782
- command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
783
- command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
784
- command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
785
- command.params['parent'] = parent unless parent.nil?
786
- command.query['fields'] = fields unless fields.nil?
787
- command.query['quotaUser'] = quota_user unless quota_user.nil?
788
- execute_or_queue_command(command, &block)
789
- end
790
-
791
758
  # Schedules an integration for execution by passing the trigger id and the
792
759
  # scheduled time in the request body.
793
760
  # @param [String] name
@@ -1926,39 +1893,6 @@ module Google
1926
1893
  execute_or_queue_command(command, &block)
1927
1894
  end
1928
1895
 
1929
- # Get execution stats
1930
- # @param [String] parent
1931
- # Required. The parent resource name: `parent=projects/*/locations/*`.
1932
- # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
1933
- # @param [String] fields
1934
- # Selector specifying which fields to include in a partial response.
1935
- # @param [String] quota_user
1936
- # Available to use for quota purposes for server-side applications. Can be any
1937
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1938
- # @param [Google::Apis::RequestOptions] options
1939
- # Request-specific options
1940
- #
1941
- # @yield [result, err] Result & error if block supplied
1942
- # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
1943
- # @yieldparam err [StandardError] error object if request failed
1944
- #
1945
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
1946
- #
1947
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1948
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1949
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1950
- def monitorexecutionstats_project_location_product_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1951
- command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
1952
- command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
1953
- command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
1954
- command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
1955
- command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
1956
- command.params['parent'] = parent unless parent.nil?
1957
- command.query['fields'] = fields unless fields.nil?
1958
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1959
- execute_or_queue_command(command, &block)
1960
- end
1961
-
1962
1896
  # Schedules an integration for execution by passing the trigger id and the
1963
1897
  # scheduled time in the request body.
1964
1898
  # @param [String] name
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-integrations_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.5.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Application Integration API V1alpha