예제 #1
0
        private GetScopeMapResult(
            ImmutableArray <string> actions,

            string creationDate,

            string?description,

            string id,

            string name,

            string provisioningState,

            Outputs.SystemDataResponse systemData,

            string type)
        {
            Actions           = actions;
            CreationDate      = creationDate;
            Description       = description;
            Id                = id;
            Name              = name;
            ProvisioningState = provisioningState;
            SystemData        = systemData;
            Type              = type;
        }
예제 #2
0
        private GetTokenResult(
            string creationDate,

            Outputs.TokenCredentialsPropertiesResponse?credentials,

            string id,

            string name,

            string provisioningState,

            string?scopeMapId,

            string?status,

            Outputs.SystemDataResponse systemData,

            string type)
        {
            CreationDate      = creationDate;
            Credentials       = credentials;
            Id                = id;
            Name              = name;
            ProvisioningState = provisioningState;
            ScopeMapId        = scopeMapId;
            Status            = status;
            SystemData        = systemData;
            Type              = type;
        }