purecloudplatformclientv2 2.0.21 → 2.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/docs/ADFS.md +1 -1
- data/docs/CertificateDetails.md +1 -1
- data/docs/CustomerInteractionCenter.md +1 -1
- data/docs/Document.md +1 -1
- data/docs/DomainOrganizationRole.md +1 -1
- data/docs/DomainOrganizationRoleCreate.md +1 -1
- data/docs/DomainOrganizationRoleUpdate.md +1 -1
- data/docs/FaxDocument.md +1 -1
- data/docs/GSuite.md +1 -1
- data/docs/IdentityNow.md +1 -1
- data/docs/JsonNode.md +5 -5
- data/docs/Okta.md +1 -1
- data/docs/OneLogin.md +1 -1
- data/docs/PingIdentity.md +1 -1
- data/docs/Salesforce.md +1 -1
- data/lib/purecloudplatformclientv2/models/adfs.rb +10 -10
- data/lib/purecloudplatformclientv2/models/certificate_details.rb +13 -13
- data/lib/purecloudplatformclientv2/models/customer_interaction_center.rb +10 -10
- data/lib/purecloudplatformclientv2/models/document.rb +10 -10
- data/lib/purecloudplatformclientv2/models/domain_organization_role.rb +10 -10
- data/lib/purecloudplatformclientv2/models/domain_organization_role_create.rb +10 -10
- data/lib/purecloudplatformclientv2/models/domain_organization_role_update.rb +10 -10
- data/lib/purecloudplatformclientv2/models/fax_document.rb +10 -10
- data/lib/purecloudplatformclientv2/models/g_suite.rb +10 -10
- data/lib/purecloudplatformclientv2/models/identity_now.rb +10 -10
- data/lib/purecloudplatformclientv2/models/json_node.rb +37 -37
- data/lib/purecloudplatformclientv2/models/okta.rb +10 -10
- data/lib/purecloudplatformclientv2/models/one_login.rb +10 -10
- data/lib/purecloudplatformclientv2/models/ping_identity.rb +10 -10
- data/lib/purecloudplatformclientv2/models/salesforce.rb +10 -10
- data/lib/purecloudplatformclientv2/version.rb +1 -1
- metadata +1 -1
@@ -25,10 +25,10 @@ module PureCloud
|
|
25
25
|
|
26
26
|
attr_accessor :certificate
|
27
27
|
|
28
|
-
attr_accessor :issuer_uri
|
29
|
-
|
30
28
|
attr_accessor :sso_target_uri
|
31
29
|
|
30
|
+
attr_accessor :issuer_uri
|
31
|
+
|
32
32
|
attr_accessor :disabled
|
33
33
|
|
34
34
|
# The URI for this object
|
@@ -40,8 +40,8 @@ module PureCloud
|
|
40
40
|
:'id' => :'id',
|
41
41
|
:'name' => :'name',
|
42
42
|
:'certificate' => :'certificate',
|
43
|
-
:'issuer_uri' => :'issuerURI',
|
44
43
|
:'sso_target_uri' => :'ssoTargetURI',
|
44
|
+
:'issuer_uri' => :'issuerURI',
|
45
45
|
:'disabled' => :'disabled',
|
46
46
|
:'self_uri' => :'selfUri'
|
47
47
|
}
|
@@ -53,8 +53,8 @@ module PureCloud
|
|
53
53
|
:'id' => :'String',
|
54
54
|
:'name' => :'String',
|
55
55
|
:'certificate' => :'String',
|
56
|
-
:'issuer_uri' => :'String',
|
57
56
|
:'sso_target_uri' => :'String',
|
57
|
+
:'issuer_uri' => :'String',
|
58
58
|
:'disabled' => :'BOOLEAN',
|
59
59
|
:'self_uri' => :'String'
|
60
60
|
}
|
@@ -80,14 +80,14 @@ module PureCloud
|
|
80
80
|
self.certificate = attributes[:'certificate']
|
81
81
|
end
|
82
82
|
|
83
|
-
if attributes.has_key?(:'issuerURI')
|
84
|
-
self.issuer_uri = attributes[:'issuerURI']
|
85
|
-
end
|
86
|
-
|
87
83
|
if attributes.has_key?(:'ssoTargetURI')
|
88
84
|
self.sso_target_uri = attributes[:'ssoTargetURI']
|
89
85
|
end
|
90
86
|
|
87
|
+
if attributes.has_key?(:'issuerURI')
|
88
|
+
self.issuer_uri = attributes[:'issuerURI']
|
89
|
+
end
|
90
|
+
|
91
91
|
if attributes.has_key?(:'disabled')
|
92
92
|
self.disabled = attributes[:'disabled']
|
93
93
|
end
|
@@ -118,8 +118,8 @@ module PureCloud
|
|
118
118
|
id == o.id &&
|
119
119
|
name == o.name &&
|
120
120
|
certificate == o.certificate &&
|
121
|
-
issuer_uri == o.issuer_uri &&
|
122
121
|
sso_target_uri == o.sso_target_uri &&
|
122
|
+
issuer_uri == o.issuer_uri &&
|
123
123
|
disabled == o.disabled &&
|
124
124
|
self_uri == o.self_uri
|
125
125
|
end
|
@@ -133,7 +133,7 @@ module PureCloud
|
|
133
133
|
# Calculates hash code according to all attributes.
|
134
134
|
# @return [Fixnum] Hash code
|
135
135
|
def hash
|
136
|
-
[id, name, certificate,
|
136
|
+
[id, name, certificate, sso_target_uri, issuer_uri, disabled, self_uri].hash
|
137
137
|
end
|
138
138
|
|
139
139
|
# build the object from hash
|