aws-sdk-clouddirectory 1.0.0.rc10 → 1.0.0.rc11
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bf00a629f4103b47a71bf902c63dffd965dfdb5
|
4
|
+
data.tar.gz: ffad214e578dd2551314a69937b4c4b50da2a593
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9460c4cb769c3dce278efe4567253cd4c0f7f41511671d76e32f242c64b8c0f57da7d3966d9ae79f6ff3854d9fbd1b8c14dd1ca55a45a7ca9712372c1cb0116
|
7
|
+
data.tar.gz: 2eb2280f370a0f91fab876dc20e19c686fef7859aaa616d5b039d64b736420ca45b85583a562197e055b73471fd4ba679b5c559ac6e36ba9b7f99727aafd1318
|
@@ -870,6 +870,14 @@ module Aws::CloudDirectory
|
|
870
870
|
# selector: "SelectorObjectReference",
|
871
871
|
# },
|
872
872
|
# },
|
873
|
+
# detach_policy: {
|
874
|
+
# policy_reference: { # required
|
875
|
+
# selector: "SelectorObjectReference",
|
876
|
+
# },
|
877
|
+
# object_reference: { # required
|
878
|
+
# selector: "SelectorObjectReference",
|
879
|
+
# },
|
880
|
+
# },
|
873
881
|
# create_index: {
|
874
882
|
# ordered_indexed_attribute_list: [ # required
|
875
883
|
# {
|
@@ -3505,7 +3513,7 @@ module Aws::CloudDirectory
|
|
3505
3513
|
params: params,
|
3506
3514
|
config: config)
|
3507
3515
|
context[:gem_name] = 'aws-sdk-clouddirectory'
|
3508
|
-
context[:gem_version] = '1.0.0.
|
3516
|
+
context[:gem_version] = '1.0.0.rc11'
|
3509
3517
|
Seahorse::Client::Request.new(handlers, context)
|
3510
3518
|
end
|
3511
3519
|
|
@@ -54,6 +54,8 @@ module Aws::CloudDirectory
|
|
54
54
|
BatchDetachFromIndexResponse = Shapes::StructureShape.new(name: 'BatchDetachFromIndexResponse')
|
55
55
|
BatchDetachObject = Shapes::StructureShape.new(name: 'BatchDetachObject')
|
56
56
|
BatchDetachObjectResponse = Shapes::StructureShape.new(name: 'BatchDetachObjectResponse')
|
57
|
+
BatchDetachPolicy = Shapes::StructureShape.new(name: 'BatchDetachPolicy')
|
58
|
+
BatchDetachPolicyResponse = Shapes::StructureShape.new(name: 'BatchDetachPolicyResponse')
|
57
59
|
BatchDetachTypedLink = Shapes::StructureShape.new(name: 'BatchDetachTypedLink')
|
58
60
|
BatchDetachTypedLinkResponse = Shapes::StructureShape.new(name: 'BatchDetachTypedLinkResponse')
|
59
61
|
BatchGetObjectInformation = Shapes::StructureShape.new(name: 'BatchGetObjectInformation')
|
@@ -469,6 +471,12 @@ module Aws::CloudDirectory
|
|
469
471
|
BatchDetachObjectResponse.add_member(:detached_object_identifier, Shapes::ShapeRef.new(shape: ObjectIdentifier, location_name: "detachedObjectIdentifier"))
|
470
472
|
BatchDetachObjectResponse.struct_class = Types::BatchDetachObjectResponse
|
471
473
|
|
474
|
+
BatchDetachPolicy.add_member(:policy_reference, Shapes::ShapeRef.new(shape: ObjectReference, required: true, location_name: "PolicyReference"))
|
475
|
+
BatchDetachPolicy.add_member(:object_reference, Shapes::ShapeRef.new(shape: ObjectReference, required: true, location_name: "ObjectReference"))
|
476
|
+
BatchDetachPolicy.struct_class = Types::BatchDetachPolicy
|
477
|
+
|
478
|
+
BatchDetachPolicyResponse.struct_class = Types::BatchDetachPolicyResponse
|
479
|
+
|
472
480
|
BatchDetachTypedLink.add_member(:typed_link_specifier, Shapes::ShapeRef.new(shape: TypedLinkSpecifier, required: true, location_name: "TypedLinkSpecifier"))
|
473
481
|
BatchDetachTypedLink.struct_class = Types::BatchDetachTypedLink
|
474
482
|
|
@@ -644,6 +652,7 @@ module Aws::CloudDirectory
|
|
644
652
|
BatchWriteOperation.add_member(:add_facet_to_object, Shapes::ShapeRef.new(shape: BatchAddFacetToObject, location_name: "AddFacetToObject"))
|
645
653
|
BatchWriteOperation.add_member(:remove_facet_from_object, Shapes::ShapeRef.new(shape: BatchRemoveFacetFromObject, location_name: "RemoveFacetFromObject"))
|
646
654
|
BatchWriteOperation.add_member(:attach_policy, Shapes::ShapeRef.new(shape: BatchAttachPolicy, location_name: "AttachPolicy"))
|
655
|
+
BatchWriteOperation.add_member(:detach_policy, Shapes::ShapeRef.new(shape: BatchDetachPolicy, location_name: "DetachPolicy"))
|
647
656
|
BatchWriteOperation.add_member(:create_index, Shapes::ShapeRef.new(shape: BatchCreateIndex, location_name: "CreateIndex"))
|
648
657
|
BatchWriteOperation.add_member(:attach_to_index, Shapes::ShapeRef.new(shape: BatchAttachToIndex, location_name: "AttachToIndex"))
|
649
658
|
BatchWriteOperation.add_member(:detach_from_index, Shapes::ShapeRef.new(shape: BatchDetachFromIndex, location_name: "DetachFromIndex"))
|
@@ -661,6 +670,7 @@ module Aws::CloudDirectory
|
|
661
670
|
BatchWriteOperationResponse.add_member(:add_facet_to_object, Shapes::ShapeRef.new(shape: BatchAddFacetToObjectResponse, location_name: "AddFacetToObject"))
|
662
671
|
BatchWriteOperationResponse.add_member(:remove_facet_from_object, Shapes::ShapeRef.new(shape: BatchRemoveFacetFromObjectResponse, location_name: "RemoveFacetFromObject"))
|
663
672
|
BatchWriteOperationResponse.add_member(:attach_policy, Shapes::ShapeRef.new(shape: BatchAttachPolicyResponse, location_name: "AttachPolicy"))
|
673
|
+
BatchWriteOperationResponse.add_member(:detach_policy, Shapes::ShapeRef.new(shape: BatchDetachPolicyResponse, location_name: "DetachPolicy"))
|
664
674
|
BatchWriteOperationResponse.add_member(:create_index, Shapes::ShapeRef.new(shape: BatchCreateIndexResponse, location_name: "CreateIndex"))
|
665
675
|
BatchWriteOperationResponse.add_member(:attach_to_index, Shapes::ShapeRef.new(shape: BatchAttachToIndexResponse, location_name: "AttachToIndex"))
|
666
676
|
BatchWriteOperationResponse.add_member(:detach_from_index, Shapes::ShapeRef.new(shape: BatchDetachFromIndexResponse, location_name: "DetachFromIndex"))
|
@@ -975,6 +975,45 @@ module Aws::CloudDirectory
|
|
975
975
|
include Aws::Structure
|
976
976
|
end
|
977
977
|
|
978
|
+
# Detaches the specified policy from the specified directory inside a
|
979
|
+
# BatchRead operation. For more information, see DetachPolicy and
|
980
|
+
# BatchReadRequest$Operations.
|
981
|
+
#
|
982
|
+
# @note When making an API call, you may pass BatchDetachPolicy
|
983
|
+
# data as a hash:
|
984
|
+
#
|
985
|
+
# {
|
986
|
+
# policy_reference: { # required
|
987
|
+
# selector: "SelectorObjectReference",
|
988
|
+
# },
|
989
|
+
# object_reference: { # required
|
990
|
+
# selector: "SelectorObjectReference",
|
991
|
+
# },
|
992
|
+
# }
|
993
|
+
#
|
994
|
+
# @!attribute [rw] policy_reference
|
995
|
+
# Reference that identifies the policy object.
|
996
|
+
# @return [Types::ObjectReference]
|
997
|
+
#
|
998
|
+
# @!attribute [rw] object_reference
|
999
|
+
# Reference that identifies the object whose policy object will be
|
1000
|
+
# detached.
|
1001
|
+
# @return [Types::ObjectReference]
|
1002
|
+
#
|
1003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDetachPolicy AWS API Documentation
|
1004
|
+
#
|
1005
|
+
class BatchDetachPolicy < Struct.new(
|
1006
|
+
:policy_reference,
|
1007
|
+
:object_reference)
|
1008
|
+
include Aws::Structure
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# Represents the output of a DetachPolicy response operation.
|
1012
|
+
#
|
1013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDetachPolicyResponse AWS API Documentation
|
1014
|
+
#
|
1015
|
+
class BatchDetachPolicyResponse < Aws::EmptyStructure; end
|
1016
|
+
|
978
1017
|
# Detaches a typed link from a specified source and target object inside
|
979
1018
|
# a BatchRead operation. For more information, see DetachTypedLink and
|
980
1019
|
# BatchReadRequest$Operations.
|
@@ -2570,6 +2609,14 @@ module Aws::CloudDirectory
|
|
2570
2609
|
# selector: "SelectorObjectReference",
|
2571
2610
|
# },
|
2572
2611
|
# },
|
2612
|
+
# detach_policy: {
|
2613
|
+
# policy_reference: { # required
|
2614
|
+
# selector: "SelectorObjectReference",
|
2615
|
+
# },
|
2616
|
+
# object_reference: { # required
|
2617
|
+
# selector: "SelectorObjectReference",
|
2618
|
+
# },
|
2619
|
+
# },
|
2573
2620
|
# create_index: {
|
2574
2621
|
# ordered_indexed_attribute_list: [ # required
|
2575
2622
|
# {
|
@@ -2686,6 +2733,10 @@ module Aws::CloudDirectory
|
|
2686
2733
|
# limited number of attached policies.
|
2687
2734
|
# @return [Types::BatchAttachPolicy]
|
2688
2735
|
#
|
2736
|
+
# @!attribute [rw] detach_policy
|
2737
|
+
# Detaches a policy from a Directory.
|
2738
|
+
# @return [Types::BatchDetachPolicy]
|
2739
|
+
#
|
2689
2740
|
# @!attribute [rw] create_index
|
2690
2741
|
# Creates an index object. See [Indexing][1] for more information.
|
2691
2742
|
#
|
@@ -2731,6 +2782,7 @@ module Aws::CloudDirectory
|
|
2731
2782
|
:add_facet_to_object,
|
2732
2783
|
:remove_facet_from_object,
|
2733
2784
|
:attach_policy,
|
2785
|
+
:detach_policy,
|
2734
2786
|
:create_index,
|
2735
2787
|
:attach_to_index,
|
2736
2788
|
:detach_from_index,
|
@@ -2774,6 +2826,10 @@ module Aws::CloudDirectory
|
|
2774
2826
|
# limited number of attached policies.
|
2775
2827
|
# @return [Types::BatchAttachPolicyResponse]
|
2776
2828
|
#
|
2829
|
+
# @!attribute [rw] detach_policy
|
2830
|
+
# Detaches a policy from a Directory.
|
2831
|
+
# @return [Types::BatchDetachPolicyResponse]
|
2832
|
+
#
|
2777
2833
|
# @!attribute [rw] create_index
|
2778
2834
|
# Creates an index object. See [Indexing][1] for more information.
|
2779
2835
|
#
|
@@ -2819,6 +2875,7 @@ module Aws::CloudDirectory
|
|
2819
2875
|
:add_facet_to_object,
|
2820
2876
|
:remove_facet_from_object,
|
2821
2877
|
:attach_policy,
|
2878
|
+
:detach_policy,
|
2822
2879
|
:create_index,
|
2823
2880
|
:attach_to_index,
|
2824
2881
|
:detach_from_index,
|
@@ -2950,6 +3007,14 @@ module Aws::CloudDirectory
|
|
2950
3007
|
# selector: "SelectorObjectReference",
|
2951
3008
|
# },
|
2952
3009
|
# },
|
3010
|
+
# detach_policy: {
|
3011
|
+
# policy_reference: { # required
|
3012
|
+
# selector: "SelectorObjectReference",
|
3013
|
+
# },
|
3014
|
+
# object_reference: { # required
|
3015
|
+
# selector: "SelectorObjectReference",
|
3016
|
+
# },
|
3017
|
+
# },
|
2953
3018
|
# create_index: {
|
2954
3019
|
# ordered_indexed_attribute_list: [ # required
|
2955
3020
|
# {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-clouddirectory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|