google-apis-contactcenteraiplatform_v1alpha1 0.22.0 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7912a690b1efd9b6c36ee1935a6a15b37644c3f5fdce17c4dd38243fe31f5b51
|
4
|
+
data.tar.gz: 2a22f160d132d0382b056a4e0b60120d3f8a9ec829548c15dfcddd4e61cf6a67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e3b8c20842865e248f762e6531c10fffe7d37d233de6d507c44c2bde3d698f345767eaaabd1f80fe1fa5a2b54bd8600b5c182e6edc24f2c593f86964bc8b05b
|
7
|
+
data.tar.gz: 82c8649ba0584d29a03f6527aa3ca79dd555188aef2f7cb6b70ede51437fcb9c9f970575a45be21ecf72550e5776ba68847af312c08aee4cefe479bd27a587bd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-contactcenteraiplatform_v1alpha1
|
2
2
|
|
3
|
+
### v0.24.0 (2024-10-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241002
|
6
|
+
|
7
|
+
### v0.23.0 (2024-09-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240904
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.22.0 (2024-06-23)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240621
|
@@ -111,9 +111,8 @@ module Google
|
|
111
111
|
# @return [String]
|
112
112
|
attr_accessor :create_time
|
113
113
|
|
114
|
-
# Instances in this Channel will receive updates after all instances in `
|
115
|
-
#
|
116
|
-
# their peak hours.
|
114
|
+
# Instances in this Channel will receive updates after all instances in `Normal`
|
115
|
+
# were updated. They also will only be updated outside of their peak hours.
|
117
116
|
# Corresponds to the JSON property `critical`
|
118
117
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::Critical]
|
119
118
|
attr_accessor :critical
|
@@ -257,9 +256,8 @@ module Google
|
|
257
256
|
end
|
258
257
|
end
|
259
258
|
|
260
|
-
# Instances in this Channel will receive updates after all instances in `
|
261
|
-
#
|
262
|
-
# their peak hours.
|
259
|
+
# Instances in this Channel will receive updates after all instances in `Normal`
|
260
|
+
# were updated. They also will only be updated outside of their peak hours.
|
263
261
|
class Critical
|
264
262
|
include Google::Apis::Core::Hashable
|
265
263
|
|
@@ -698,6 +696,11 @@ module Google
|
|
698
696
|
# @return [Array<String>]
|
699
697
|
attr_accessor :allowed_consumer_project_ids
|
700
698
|
|
699
|
+
# Output only. The CCAIP tenant project ids.
|
700
|
+
# Corresponds to the JSON property `producerProjectIds`
|
701
|
+
# @return [Array<String>]
|
702
|
+
attr_accessor :producer_project_ids
|
703
|
+
|
701
704
|
def initialize(**args)
|
702
705
|
update!(**args)
|
703
706
|
end
|
@@ -705,6 +708,7 @@ module Google
|
|
705
708
|
# Update properties of this object
|
706
709
|
def update!(**args)
|
707
710
|
@allowed_consumer_project_ids = args[:allowed_consumer_project_ids] if args.key?(:allowed_consumer_project_ids)
|
711
|
+
@producer_project_ids = args[:producer_project_ids] if args.key?(:producer_project_ids)
|
708
712
|
end
|
709
713
|
end
|
710
714
|
|
@@ -833,24 +837,28 @@ module Google
|
|
833
837
|
class TimeOfDay
|
834
838
|
include Google::Apis::Core::Hashable
|
835
839
|
|
836
|
-
# Hours of day in 24 hour format.
|
837
|
-
#
|
840
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
841
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
842
|
+
# value "24:00:00" for scenarios like business closing time.
|
838
843
|
# Corresponds to the JSON property `hours`
|
839
844
|
# @return [Fixnum]
|
840
845
|
attr_accessor :hours
|
841
846
|
|
842
|
-
# Minutes of hour
|
847
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
848
|
+
# to 59.
|
843
849
|
# Corresponds to the JSON property `minutes`
|
844
850
|
# @return [Fixnum]
|
845
851
|
attr_accessor :minutes
|
846
852
|
|
847
|
-
# Fractions of seconds in nanoseconds. Must be
|
853
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
854
|
+
# less than or equal to 999,999,999.
|
848
855
|
# Corresponds to the JSON property `nanos`
|
849
856
|
# @return [Fixnum]
|
850
857
|
attr_accessor :nanos
|
851
858
|
|
852
|
-
# Seconds of
|
853
|
-
# allow the value 60 if it allows leap-
|
859
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
860
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
861
|
+
# seconds.
|
854
862
|
# Corresponds to the JSON property `seconds`
|
855
863
|
# @return [Fixnum]
|
856
864
|
attr_accessor :seconds
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenteraiplatformV1alpha1
|
18
18
|
# Version of the google-apis-contactcenteraiplatform_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241002"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -365,6 +365,7 @@ module Google
|
|
365
365
|
# @private
|
366
366
|
class Representation < Google::Apis::Core::JsonRepresentation
|
367
367
|
collection :allowed_consumer_project_ids, as: 'allowedConsumerProjectIds'
|
368
|
+
collection :producer_project_ids, as: 'producerProjectIds'
|
368
369
|
end
|
369
370
|
end
|
370
371
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenteraiplatform_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-13 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-contactcenteraiplatform_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenteraiplatform_v1alpha1
|
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.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Contact Center AI Platform API V1alpha1
|