Skip to content

Commit

Permalink
feat: Automated regeneration of contactcenteraiplatform v1alpha1 clie…
Browse files Browse the repository at this point in the history
…nt (googleapis#20224)

Auto-created at 2024-09-15 09:45:07 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Sep 15, 2024
1 parent b39742d commit 1b62930
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113168,6 +113168,8 @@
"/contactcenteraiplatform:v1alpha1/PscSetting": psc_setting
"/contactcenteraiplatform:v1alpha1/PscSetting/allowedConsumerProjectIds": allowed_consumer_project_ids
"/contactcenteraiplatform:v1alpha1/PscSetting/allowedConsumerProjectIds/allowed_consumer_project_id": allowed_consumer_project_id
"/contactcenteraiplatform:v1alpha1/PscSetting/producerProjectIds": producer_project_ids
"/contactcenteraiplatform:v1alpha1/PscSetting/producerProjectIds/producer_project_id": producer_project_id
"/contactcenteraiplatform:v1alpha1/Quota": quota
"/contactcenteraiplatform:v1alpha1/Quota/contactCenterCountLimit": contact_center_count_limit
"/contactcenteraiplatform:v1alpha1/Quota/contactCenterCountSum": contact_center_count_sum
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-contactcenteraiplatform_v1alpha1

### v0.23.0 (2024-09-15)

* Regenerated from discovery document revision 20240904
* Regenerated using generator version 0.15.1

### v0.22.0 (2024-06-23)

* Regenerated from discovery document revision 20240621
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,8 @@ class ContactCenter
# @return [String]
attr_accessor :create_time

# Instances in this Channel will receive updates after all instances in `
# Critical` were updated + 2 days. They also will only be updated outside of
# their peak hours.
# Instances in this Channel will receive updates after all instances in `Normal`
# were updated. They also will only be updated outside of their peak hours.
# Corresponds to the JSON property `critical`
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::Critical]
attr_accessor :critical
Expand Down Expand Up @@ -257,9 +256,8 @@ def update!(**args)
end
end

# Instances in this Channel will receive updates after all instances in `
# Critical` were updated + 2 days. They also will only be updated outside of
# their peak hours.
# Instances in this Channel will receive updates after all instances in `Normal`
# were updated. They also will only be updated outside of their peak hours.
class Critical
include Google::Apis::Core::Hashable

Expand Down Expand Up @@ -698,13 +696,19 @@ class PscSetting
# @return [Array<String>]
attr_accessor :allowed_consumer_project_ids

# Output only. The CCAIP tenant project ids.
# Corresponds to the JSON property `producerProjectIds`
# @return [Array<String>]
attr_accessor :producer_project_ids

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@allowed_consumer_project_ids = args[:allowed_consumer_project_ids] if args.key?(:allowed_consumer_project_ids)
@producer_project_ids = args[:producer_project_ids] if args.key?(:producer_project_ids)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ContactcenteraiplatformV1alpha1
# Version of the google-apis-contactcenteraiplatform_v1alpha1 gem
GEM_VERSION = "0.22.0"
GEM_VERSION = "0.23.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.0"
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20240621"
REVISION = "20240904"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ class PscSetting
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :allowed_consumer_project_ids, as: 'allowedConsumerProjectIds'
collection :producer_project_ids, as: 'producerProjectIds'
end
end

Expand Down

0 comments on commit 1b62930

Please sign in to comment.